module 2 Flashcards

1
Q

if

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

sumif

A

-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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

and

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

or

A

Returns TRUE if at least one of the conditions are
correct
= OR (A1 > 0, B1 > 0)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

vlookup

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

hlookup

A

HLOOKUP is the exact same function as VLOOKUP , but looks up data that has been formatted by rows instead of
columns.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

date

A

– Generates a serial number from the year (a), month

b), and day (c

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

edate

A

– Returns the serial number of the date that is (b)
months away from (a)

= EDATE (1/3/2014, 3)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

today

A

– Returns the serial number of the current date

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

year

A

– Returns the year of the given date (from 1900 to
1999)

= YEAR (1/3/2006)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

yearfrac

A

– Returns the fraction of a year between (a) and (b)

= YEARFRAC (1/3/2006, 21/7/2007)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

daverage

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

dvar

A

Estimates variance based on a sample from

selected database entries

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

dstdev

A

Estimates the standard deviation based on a

sample of selected database entries

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

rank

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

arrays

A

• Array formulae enable the calculation of answers
using fewer steps than traditional formulae.

• Array formulae must be entered by typing Ctrl Shift
Enter.

• Array formulae creates the same formula over multiple cells.

17
Q

SUMIFS

A

– adds the cells specified by a given set of conditions or criteria

18
Q

MATCH

A

MATCH(Lookup_value,Lookup_array,MatchType)