Excel Advanced Formulas

You might also like

Download as pptx, pdf, or txt
Download as pptx, pdf, or txt
You are on page 1of 9

Excel

Advanced Formulas and Functions


Today’s Agenda

1 2 3 4
Warm-Up Review IF Discuss Practice
Activity Functions Nested IF Scenario
https://wordwall.net/resource/517
40043
Functions
What is an IF Ideas:

function?
Parts of an IF function

Logic Value if
Test Value if FALSE
TRUE
=IF(logical test,value if true,value if false)
If the number in cell A1 equals 2, put the word, “Yes” in
cell B1. If it does NOT equal 2, put the word, “No” in cell
B1.

Logic Value if
Test Value if FALSE
TRUE
=IF(A1=2,“Yes”, “No”)
What is a Nested IF function?

● Multiple IF functions inside each other


● Lets you test multiple criteria at once
● Lets you add more possible outcomes
You have a spreadsheet of student grades. You
need to make a Nested IF Function to convert their
number grade, to a letter grade.

=IF(A1<70,“D”,IF(A1<80,“C”,IF(A1<90,“B”,
IF(A1<100,“A”))))

You might also like