You are on page 1of 2

Objective 3  A function could actually accommodate up to

255 arguments. The maximum numbers of


Perform operation with formulas and functions
arguments and corresponding numbers are 255
 A simple formula and even more complex for a single function. An argument is separated
functions is used to provide a means to by a comma (no spacing).
interpret the data.  If you want to include in your argument a
 A FORMULA is an equation designed by a user number which will read as text then you have to
in Excel, while a FUNCTION is a predefined enclose it in a parenthesis (? or quotation
calculation in the spreadsheet application. mark?)
 Nested function – it is a function within a
Cell reference function.
 Refers to a single cell or a range of cells that is  Text string – kapag may quotation mark that is
used to calculate or evaluate formula and text string. Enclose text strings within the
function so that MS Excel can find the values formula in quotation marks.
that the data you want to calculate.  Example of functions:
 Cell reference is a cell address.  =now() – use to give the current date
 Formulas in an Excel worksheet usually involve base on the system. (this is not fixed)
functions performed on the values contained in  =average() -
one or more other cells on the worksheet (or on  =sum() – to add
another worksheet).  =MAX(range of cells) – to select the
 In one or several formulas you can use cell maximum number or highest number in
reference to refer data from one or more a particular array of cells or range of
contiguous cells or workbooks. Contiguous is cells
the group of highlighted cells  =MAX(IF(range of names=specific
 A reference that you make in a formula to the name,range of sales,FALSE))
contents of a worksheet cell is either:  =LEFT(A1) = yung first letter ng text sa
1. relative reference - A RELATIVE REFERENCE cell
to a cell takes the form A1. When you copy  =VLOOKUP(lookup_value,table_array,c
or fill a formula from the original cell to ol_index_num,[range_lookup])
other cells  COUNT() – this will only count the
 changes to maintain the number of cells that contains numbers
relationship between the cell  COUNTA() – any content whether it’s a
containing the formula and the number or a text (cell should not be
referenced cell empty)
2. absolute reference:  COUNTBLANK() – if you want to count
 An ABSOLUTE REFERENCE takes the the cells that are blank or empty use
form $A$1; ($ sign denotes absolute this function.
reference)  Keyboard shortcuts:
 When you copy or fill a formula  F2 – to activate a cell
from the original cell to other cells,  F4 – relative / absolute / mixed / mixed
an absolute reference will not  Ctrl + Shift + Enter – you are instructing
change regardless of the MS Excel that this is an array of cells.
relationship to the referenced cell,  Alt + =(equal sign) - to sum all the
the reference stays the same (fixed) values on a contiguous cells
3. mixed reference:  Operators:
 A MIXED REFERENCE refers  = equal to
absolutely to either the column or  <> not equal to
row and relatively to the other  > greater than
 Cell Array – denoted by {=} bracket  < less than
 >= greater than or equal to
 <= less than or equal to
 Error Messages:
 #DIV/0! – try to divide by 0
 #N/A! – a formula or a function inside a
formula cannot find the reference data
 #NAME? – Text in the formula is not
recognized
 #NULL! - Space was used in formulas
that reference multiple ranges; a
comma separates range references
 #NUM! - Formula has invalid numeric
data for the type of operation
 #REF! – A reference is invalid
 #VALUE! - The wrong type of operand
or function argument is used

You might also like