module 2 Flashcards
if
Returns TRUE outcome if the condition is
correct, otherwise returns FALSE outcome
IF(A1 > 0, B1, C1)
“A1 > 0” Any value or expression that can be evaluated to
TRUE or FALSE
“B1” output of condition true
“C1” output if
condition false
sumif
-The SUMIF function sums the values in a range that meet
criteria that you specify
= SUMIF (A3:A17, “>30”, B3:B17)
“A3:A1” is the range of cells that you want evaluated by criteria
“>30” is the criteria in the form of a number, expression, a cell
reference, text, or a function
“B3:B17” is the Sum-Range, the range to be summed if the criterion is
met in the Range column
and
Returns TRUE if all conditions are correct
= AND(A1 > 0, B1 > 0)
“A1 > 0” The first condition that you want to test that can
evaluate to either TRUE or FALSE
“B1 > 0” Additional conditions that you want to test that can
evaluate to either TRUE or FALSE, up to a maximum of 255
conditions
or
Returns TRUE if at least one of the conditions are
correct
= OR (A1 > 0, B1 > 0)
vlookup
Looks vertically for the lookup value in a table
and returns the corresponding items from
another column
= VLOOKUP (B10, A5:B8, 2, False)
“B10” is the value that is being looked for
“A5:B8” is the table that is being looked in
“2” is the number of columns to move across once the value being looked for is found
“False” specifies whether you want an exact match or
not. False finds exact. True finds closest that is not
more than
hlookup
HLOOKUP is the exact same function as VLOOKUP , but looks up data that has been formatted by rows instead of
columns.
date
– Generates a serial number from the year (a), month
b), and day (c
edate
– Returns the serial number of the date that is (b)
months away from (a)
= EDATE (1/3/2014, 3)
today
– Returns the serial number of the current date
year
– Returns the year of the given date (from 1900 to
1999)
= YEAR (1/3/2006)
yearfrac
– Returns the fraction of a year between (a) and (b)
= YEARFRAC (1/3/2006, 21/7/2007)
daverage
Returns the average of selected database
entries
=DAVERAGE (A3 : L13, 3, A17:L18)
• a is the range of cells that makes up the list or database
b is the column used in the function
c is the range of cells that contain the conditions you
specify
dvar
Estimates variance based on a sample from
selected database entries
dstdev
Estimates the standard deviation based on a
sample of selected database entries
rank
Returns the rank of a number in a list of numbers
= RANK (2, A1:A50, 0)
“2” is the rank you are looking after
“A1:A50” is the list of numbers to look through
“0” specifies whether (a) is sorted by descending or
ascending order. If 0 then descending. If non-0 then
ascending