Excel Functions Flashcards

1
Q

How do I get the present value of an annuity

A

=pv(discount rate, n periods, periodic payment)

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

How do I get the future value of an annuity

A

=fv(interest rate, n periods, periodic payment)

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

How do I find the periodic payments on a loan

A

=pmt(interest rate, n periods, pv of loan)

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

How do I get the periodic interest payments on a loan

A

=ipmt(interest rate, period, n periods, pv of loan)

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

How do I get the principle payments on a loan

A

=ppmt(interest rate, period, n periods, pv of loan)

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

How do I get the IRR of an investment

A

=irr(values, [guess]) or =xirr(values, dates, [guess])

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

How do I get the net present value of future cashflows

A

=npv(discount rate, values) or xnpv(discount rate, values, dates)

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

How do I calculate the yield on a bond

A

=yield(…)

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

How do I count the nonempty cells in a range

A

=counta(range)

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

How do I count cells that meet certain criteria

A

=countif(range, criteria) or = countifs(range, criterias)

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

How do I sum the values in cells that meet certain criteria in a range

A

=sumif(range, criteria) or =sumifs(range, criterias)

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

How do I manage errors

A

=iferror(value, value for error)

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

How do I use XLOOKUP

A

=xlookup(search value, search range, return range) it looks for the search value in the search range and returns the value in the corresponding cell in the return range

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

How do I use INDEX

A

=index(array, row number, column number) returns the value in the row and column specified for the specified range

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

How do I use MATCH

A

=Match(search value, array, match type) returns the relative position of a cell in a specified array that contains the search value

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

How do I use index and match together for lookups

A

use index then for the first argument give the array where the desired value will be and for the second and third argument use match to get the necessary row and column numbers in that array

17
Q

How do I use EDATE

A

=EDATE(start date, number of months before or after)

18
Q

How do I use EOMONTH

A

=EOMONTH(start date, number of months before or after)

19
Q

How do I get the current date

A

Today()

20
Q

How can I find the amount of time between two dates

A

=YEARFRAC(start date, end date) returns the decimal of years between two dates

21
Q

How can I find the number of days between two dates

A

=DAYS(start date, end date)

22
Q

How can I combine strings in different cells

A

=CONCAT(cells) or use &

23
Q

What does the trim function do

A

=TRIM(cells) removes excess spaces

24
Q

How can I replace text in cells

A

=REPLACE(cell, start char, number of chars, new text)

25
Q

How can I substitute text in cells

A

=SUBSTITUTE(cell, old text, new text)

26
Q

How can I get just some parts of a string in a cell

A

use the left, mid, or right functions with the number of characters you want

27
Q

What does goal seek do and how do I use it

A

goal seek back calculates to fill in a cell based on some target set. enter in some cell B that is dependent on some cell A and a value you want for cell B then it will fill in the necessary value for cell A

28
Q

How can I perform sensitivity analysis in excel

A

use data tables in what if analysis. setup with the base case value in the top left by linking that cell to the one in the model with the actual formula in it and then in the row under and column to the right put in possible values for the variables your output is based on. highlight the array and go to what if analysis, data table and select the appropriate cells and excel will fill in the potential cases

29
Q

How do I use LAMBDA functions

A

used to make your own function in excel. initially you use lambda and pass in parameters then the formula you want to turn into a function. once it is working add it to the name manager and call it something easy to use and remember and now you can use this as a normal excel function

30
Q
A