excel formulas

0.0(0)
studied byStudied by 0 people
GameKnowt Play
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/46

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

47 Terms

1
New cards

IF function

=IF(condition, valueiftrue, valueiffalse)

2
New cards

IFS function

=IFS(condition1,result1, condition2,result2, …)

3
New cards
4
New cards

SWITCH function

=SWITCH(expression,value1,result1,[default])

5
New cards

SUMIF example

=SUMIF(B:B,"Movie",C:C) → add sales where category is Movie

6
New cards

COUNTIF example

=COUNTIF(D:D,">900") → count transactions >900

7
New cards

AVERAGEIFS example

=AVERAGEIFS(D:D,B:B,"Movie",C:C,"January") → avg Movie sales in January

8
New cards

MAXIFS example

=MAXIFS(SalesRange,LocationRange,"Draper")

9
New cards

MINIFS example

=MINIFS(SalesRange,LocationRange,"Draper")

10
New cards
11
New cards

AND function

=AND(condition1,condition2) → TRUE if both are true

12
New cards
13
New cards

OR function

=OR(condition1,condition2) → TRUE if at least one is true

14
New cards
15
New cards

NOT function

=NOT(condition) → reverses TRUE/FALSE

16
New cards
17
New cards

Nested grading formula

=IFS(A2>=90,"A",A2>=80,"B",A2>=70,"C",A2<70,"Fail")

18
New cards
19
New cards

VLOOKUP

=VLOOKUP(lookupvalue,tablearray,col_index,FALSE)

20
New cards
21
New cards

HLOOKUP

=HLOOKUP(lookupvalue,tablearray,row_index,FALSE)

22
New cards
23
New cards

MATCH

=MATCH(lookupvalue,lookuparray,[match_type])

24
New cards
25
New cards

INDEX

=INDEX(array,rownum,[colnum])

26
New cards
27
New cards

NOW function

=NOW() → returns date + time

28
New cards
29
New cards

TODAY function

=TODAY() → returns current date

30
New cards
31
New cards

WEEKDAY function

=WEEKDAY(serialnumber,[returntype])

32
New cards
33
New cards

WORKDAY function

=WORKDAY(start_date,days,[holidays])

34
New cards
35
New cards

NPER function

=NPER(rate,pmt,pv,[fv],[type])

36
New cards
37
New cards

PMT function example

=PMT(6%/12,60,-20000) → monthly payment for $20k loan, 6%, 60 months

38
New cards
39
New cards

Evaluate Formula

Tool that shows step-by-step how Excel calculates

40
New cards
41
New cards

Trace Dependents

Tool that shows which cells rely on the selected cell

42
New cards
43
New cards

Watch Window

Tool to monitor a cell’s value as data changes

44
New cards
45
New cards

Error Checking

Tool to validate formulas in a worksheet

46
New cards
47
New cards

Macro naming rule

Macro names cannot have spaces or start with a number