If statements
Vlookup
what if analysis
Named Data
Circular References
100

What function returns 'Pass' if score >= 60, else 'Fail'?

:=IF(@score>=60, "Pass", "Fail")"

100

How to find an employee's department using VLOOKUP?

=VLOOKUP("Employee", A2:C10, 2, FALSE)

100

How do you use Goal Seek to hit a target?

Data > What-If Analysis > Goal Seek - In the Goal Seek dialog box: Set cell: The cell that contains your formula, To value: The goal you want (e.g., 10000), By changing cell: The input cell you want to adjust 

100

How to create a named range?

Formulas > Define Name

100

What is a circular reference?

A formula that refers to its own cell.

200

How do you write a nested IF for grades A-F?

"=IF(@score>=90,"A",IF(@score>=80,"B",IF(@score>=70,"C",IF(@score>=60,"D","F"))))"

200

What does the FALSE parameter do in VLOOKUP?


It forces an exact match. 


200

What tool helps analyze two variables?

Two-variable Data Table

200

What benefit does a named range provide?

Improves formula readability and reuse.

200

How do you allow circular references?

File > Options > Formulas > Enable iterative calculation

300

What function checks two conditions in IF?

"=IF(AND(condition1, condition2), "True", "False")"

300

How to handle missing values in VLOOKUP?

Not Found 


300

What report shows results from different scenarios?

Scenario Summary Report

300

How do you reference a named range in a formula - give an example?

"=SUM(SalesData)"

300

What's the danger of using circular references?

May lead to inaccurate or infinite calculations.

400

How do you handle errors in IF formula?

"=IFERROR(@formula, "Error")"

400

What happens if the column index is too large?

You get a #REF! error.


400

What-If tool allows input adjustment for a formula?

Goal Seek

400

Can you use a name across multiple sheets?

What is Yes.

400

How to fix a circular reference?

Change formula logic or remove self-reference.

500

Who was one of the guest speakers this semester?  and what was their company?

Who is Tom Labordo at Paramount? Who is Leah Raber from AirBnb?

500

How do you use a named range in VLOOKUP?

=VLOOKUP("X", NamedRange, 2, FALSE)

500

How do you model best/worst case scenarios?

Use Scenario Manager

500

This Excel feature allows you to assign a custom name to a cell or range of cells, making formulas easier to read and manage.

What is a named range?

500

Why might someone use a circular reference?

For iterative financial models or forecasts.