You are on page 1of 6

(RANDBETWEEN) COPIED (RAND)

ROUND
-12.67
-12.42
12.17
12.67

MROUND
0.5 -12.12
0.5 12.17
0.5 12.67
3 10

(ABS; +ve)
(PRODUCT)
(POWER)
(SQRT)
(QUOTIENT)
BAD BaD (MOD)
bAd BAD (EXP)
(LN)

(SIGN; +ve)
(EVEN: +ve)
(ODD: +ve)

(LARGE)
(CHOOSE)
(EXACT)

(ROW())
(COLUMN())
(SHEET())
(SHEETS: Single)
(ADDRESS: Absolute)
(CELL: Contents)
(SUBTOTAL: Incl Hidden)
(AGGREGATE: 3 Arguments)

(RANDARRAY: 5 Rows, 3 Cols) (COPIED)


X Y

SUMPRODUCT
SUMSQ
SUMX2MY2
SUMX2PY2
SUMXMY2
ROUNDUP ROUNDDOWN INT TRUNC

CEILING FLOOR

(ABS; -ve)

(LOG10) (LOG)

(SIGN; 0) (SIGN; -ve)


(EVEN: 0) (EVEN: -ve)
(ODD: 0) (ODD: -ve)

(SMALL)

(EXACT) (EXACT)

ROW(Argument) (ROWS)
COLUMN(Argument) (COLUMNS)
SHEET(Argument)
(SHEETS: Multiple)
(ADDRESS: Relative) (ADDRESS: Sheet-Name)
(CELL: Address)
(SUBTOTAL: Excl Hidden)
(AGGREGATE: 4 Arguments)
RAND
RANDBETWEEN
ROUND
ROUNDUP
ROUNDDOWN
INT
TRUNC
MROUND
CEILING
FLOOR

ABS
PRODUCT
POWER
SQRT
QUOTIENT
MOD
EXP
LN
SIGN
EVEN
ODD
LARGE
SMALL
CHOOSE
EXACT

ROW
ROWS
COLUMN
COLUMNS
SHEET
SHEETS
ADDRESS
CELL
SUBTOTAL
AGGREGATE

RANDARRAY
SUMPRODUCT
SUMSQ
SUMX2MY2
SUMX2PY2
SUMXMY2
Returns a random number between 0 and 1
Returns a random number between two given integers
Returns a number rounded to a given number of digits
Returns a number rounded to a given number of decimal places away from zero
Returns a number rounded to a specified number of digits towards zero
Rounds a number down to the next integer
Truncates a number towards zero (i.e. rounds a positive number down and a negative number up), to the next integer.
returns a number rounded to the desired multiple (it will be rounded up or down, depending on the nearest multiple)
Rounds a given number up to the nearest specified multiple (always rounds up)
Rounds a given number down to the nearest specified multiple (always rounds down)

Returns the absolute value (i.e. the modulus) of a supplied number


Returns the product of a supplied list of numbers
Returns the result of a given number raised to a supplied power
Returns the positive square root of a given number
Returns the integer portion of a division between two supplied numbers
Returns the remainder from a division between two supplied numbers
Returns e raised to a given power
Returns the natural logarithm of a given number
Returns the sign (+1, -1 or 0) of a supplied number
Rounds a number away from zero (i.e. rounds a positive number up and a negative number down), to the next even number
Rounds a number away from zero (i.e. rounds a positive number up and a negative number down), to the next odd number
Returns the largest, second largest, third largest and kth largest values from a range.
Returns the nth smallest value from a range.
Returns a value from a list of values based on a given position
Compares two strings and returns TRUE if both values are the same.
Otherwise, it will return FALSE. (It is Case Sensitive Match)

Returns the row number for a reference.


Returns the count of rows in a given reference.
Returns the column number for a reference.
Returns the count of columns in a given reference.
Returns the index number of a sheet in Excel.
Returns the total number of sheets in a given reference.
Returns the address of a cell in a worksheet.
Returns information about details (e.g. formatting, location, content, etc.) of a cell.
Returns the subtotal of the numbers in a column in a list or database
To apply functions like AVERAGE, SUM, COUNT, … & address error/hidden rows

Returns an array of random numbers


Multiplies range of cells or arrays and returns the sum of products.
Returns the sum of squares of a supplied set of values.
Returns the sum of the differences of squares of two supplied sets of values.
Returns the sum of the sum of squares of two supplied sets of values.
Returns the sum of the squares of differences between corresponding values in two supplied arrays.

You might also like