Functions in MS Excel
Functions in MS Excel
Functions in MS Excel
Error Description
Message
##### Insufficient width in cell to display
numerical data, or negative date/time
#NAME? Unrecognized text in a formula
#N/A No Answer
#REF! Invalid cell reference
#VALUE! Wrong argument type or operand
#NUM! Invalid numeric values in a formula or
function
#DIV/0! Division by zero
Absolute and Relative References
Referenc Meaning
e Style
$A$1 Both the column and row reference are fixed.
Neither will be incremented or changed during a
copy or fill operation.
$A1 Only the column reference is fixed. It will not
change during a fill or copy, but the row will
change.
A$1 Only the row reference is fixed. It will not change
during a fill or copy, but the column will change.
AND
Returns TRUE if all its arguments are TRUE; returns FALSE if
one or more argument is FALSE.
OR
Returns TRUE if any argument is TRUE; returns FALSE if all
arguments are FALSE.
Syntax OR(logical1,logical2,...)
TRUTH TABLE
Syntax
Remarks
The "&" operator can be used instead of
CONCATENATE to join text items.
DATE()
Returns the sequential serial number that represents a particular date. If the
cell format was General before the function was entered, the result is
formatted as a date.
Syntax
DATE(year,month,day)
Note:
Microsoft Excel stores dates as sequential serial numbers so they can be
used in calculations. By default, January 1, 1900 is serial number 1, and
January 1, 2008 is serial number 39448 because it is 39,448 days after
January 1, 1900.
DATEDIF(TRANS DATE, CUT-OFF DATE, INTERVAL)
computes the date difference between two dates
Interval
"md" The difference between the days in start_date and end_date. The
months and years of the dates are ignored.
"ym" The difference between the months in start_date and end_date. The
days and years of the dates are ignored
"yd" The difference between the days of start_date and end_date. The
years of the dates are ignored.
The End