Exam study Flashcards

1
Q

Simple IF statements

A

IF (x,y,z)…
- x: criteria
- y: output if true
- z: output if false

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

Nested IF statements (2016+)

A

=IFS(logical_test1, value_if_true1, [logical_test2, value_if_true2], [logical_test3, value_if_true3])

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

If error

A

=IFERROR(value, value_if_error): returns a value you specify if a formula evaluates to an error. If the formula does not result in an error, IFERROR returns the result of the formula.

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

EOMONTH vs. EDATE

A

-EOMONTH(start_date, months): outputs the last day starting from a specified month
-EDATE(start_date, months): outputs a specific day starting from specified month

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

YEARFRAC

A

Returns proportion of year between two given dates, start_date and end_date.

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

HLOOKUP

A
  • H means horizontal, searches HORIZONTALLY for look-up value
    =HLOOKUP(lookupvalue, table range, row #) : searches for lookup value across, then returns the # row you specify
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

VLOOKUP

A
  • V means vertical, searches UP AND DOWN for look-up value
    =VLOOKUP(lookupvalue, table range, column #): searches for lookup value up and down, then returns the # column you specify
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

OFFSET

A

Give a reference point, # of columns to go across, # of rows to go down

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

MATCH

A

Combine with HLOOKUP and VLOOKUP and OFFSET to change static references to non-static

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

COLUMN/ROW (3 functions)

A

-ROW()/COLUMN(): outputs row/column # of cell you’re typing in

-ROW(reference)/COLUMN(reference) :row/column # of selected cell

-ROW(array)/COLUMN(array): # of rows/columns in an array

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

Need to do data tables and XLOOKUP

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

SUMPRODUCT

A

=SUMPRODUCT(array1, array2…): multiplies corresponding components in two or more arrays, and returns the sum of these products.

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

TRUE/FALSE

A

-TRUE: not a number
-TRUE * 1.0: a number (1 * 1 = 1)
- TRUE * TRUE: a number (1 * 1 = 1)

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

SUMPRODUCT + TRUE FALSE

A

Only will sum up the columns that match the criteria (ex: SUMPRODUCT(A1:A8=C8,

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

SUMIF/SUMIFS

A

SUMIF(range, criteria, sum_range)
SUMIFS(sum_range, criteria_range1, criteria1, criteria_range2, criteria2…)
- Allows for multiple criteria

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

MIN/MAX

A

=MIN(number1, number2), =MAX(number1, number2): returns smallest or largest value in a range of values

17
Q

COUNT, COUNTA, COUNTIF/COUNTIFS

A

COUNT(value1, value2): counts number of cells that contain #s in the list

COUNTA: same as count except #s and text are ommitted

COUNTIFS: allows for multiple criteria – similar to the SUMIFS function.

18
Q

Present value

A

=PV(rate, nper, pmt, fv, type)
-Rate: interest rate per period
-Nper: total # of payment periods
-Pmt = payment made during each period (it cannot change)
-Fv = future value
-Type = indicates when payments are due:
0 or omitted = end of the period
1 = beginning of the period

19
Q

Future value

A

=FV(rate, nper, pmt, fv, type)

20
Q

What is present value?

A

The amount you would need to invest today, at a given interest rate/fixed payment, to end up with a certain amount in the future.

21
Q

What is future value?

A

The value of a certain asset at a specified date in the future based on the assumed rate of growth.

22
Q

NPV

A

=NPV(rate, value1, value2)
The difference between the present value of cash inflows and the present value of cash outflows over a period of time (assumes UNFIXED payments, assumes payments occur at regular intervals at end of each period)

23
Q

XNPV

A

=XNPV(rate, values, dates)
Set of cash flows that don’t occur at equal time intervals (need to include the dates to indicate when cash is going out/coming in)

24
Q

IRR

A

Rate for which NPV of a series of cash flows equals 0 (for regular intervals)

25
Q

XIRR

A

Similar to IRR, used for irregular cash flow intervals

26
Q
A