Computer Applications
Computer Applications
TECHNOLOGY
MRS N SABAN
MICROSOFT EXCEL
LEARNER NOTES:FUNCTIONS IN EXCEL
Basic functions
Name of function What the function Example
does
SUM Calculates the sum or =SUM(B2:E2)
total
AVERAGE Calculates the =AVERAGE(A2:A7)
average value
MIN Calculates the =MIN(B2:B10)
minimum value
MAX Calculates the =MAX(C2:C12)
maximum value
The IF function
Name of function What the function Example
does
IF Allocates a value to a =IF(D2>5,"Bonus",
cell according to the "No bonus")
result of the
condition(s) specified.
=IF(condition, Value
_if_true,
Value_if_false)
_if_true,
Value_if_false)
CONDITION that is VALUE_IF_TRUE VALUE_IF_FALSE
tested. answer will the value that will be the value that will be
always be true or placed in the cell if the placed in the cell if the
false) condition IS met condition IS NOT
met
Any expression that The value can be a
has a result of true or number, cell
false. The operators reference, formula/
are: =, >, >=, function or a text
<,<= and <>, and value.
are used with A text value is always
constant values (text placed I double
or number), formulas inverted commas.
or cell references.
Example
=VLOOKUP(Lookup_value, Table_array, Col _index_num, Range_lookup)
More functions:
Text functions:
Name of function What the function Example
does
LEN Determines the = LEN(A3)
number of characters
in a string
CONCATENATE Combines multiple =CONCATENATE(strin
strings into a single g1,string2,...)
string
UPPER Converts all the letters =UPPER(B4)
in a string to upper
case
=UPPER(B4)
in a string to upper
case
LOWER Converts all the letters =LOWER(C1)
in a string to lower
case
LEFT(string, N) Extracts the left N =LEFT(D9,4)
characters of a string
RIGHT(string, N) Extracts the right N =RIGHT(A8,5)
characters of a string
MID(string, M,N) Extracts N characters =MID(B6,5,3)
from the "start at the 5
M" position in a string character and count
3"
Strydom
FIND (substring, Returns the position =FIND(" ",A4)
string) of a substring within a To find the space in
string the cell
VALUE Converts a string that =VALUE(E5)
represents a 072 will be converted
numerical value to a to 72
number.
String can be a
number, date. or time
value that has been
formatted as text.