0
0
Excelspreadsheet~20 mins

Formula bar and cell preview in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Formula Bar & Cell Preview Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
Understanding Formula Bar Output
You enter the formula =SUM(A1:A3) in cell B1. The cells A1, A2, and A3 contain the values 5, 10, and 15 respectively.

What will the formula bar and the cell preview show in cell B1?
AFormula bar: 30<br>Cell preview: 30
BFormula bar: 30<br>Cell preview: =SUM(A1:A3)
CFormula bar: =SUM(A1:A3)<br>Cell preview: 30
DFormula bar: =SUM(A1:A3)<br>Cell preview: =SUM(A1:A3)
Attempts:
2 left
💡 Hint
Remember, the formula bar shows the formula itself, while the cell preview shows the result of the formula.
📊 Formula Result
intermediate
2:00remaining
Formula Bar and Text Values
Cell A1 contains the text "Hello". You enter the formula =A1 in cell B1.

What will the formula bar and cell preview show in cell B1?
AFormula bar: =A1<br>Cell preview: Hello
BFormula bar: Hello<br>Cell preview: =A1
CFormula bar: ="Hello"<br>Cell preview: Hello
DFormula bar: Hello<br>Cell preview: Hello
Attempts:
2 left
💡 Hint
The formula bar shows the formula entered, even if it references text.
Function Choice
advanced
2:00remaining
Choosing the Correct Formula for Cell Preview
You want cell B1 to show the average of numbers in cells A1 through A5. Which formula entered in B1 will show the correct average in the cell preview and the formula in the formula bar?
A=AVERAGE(A1:A5)
B=SUM(A1:A5)/5
C=MEAN(A1:A5)
D=AVG(A1:A5)
Attempts:
2 left
💡 Hint
Excel has a specific function for average calculation.
data_analysis
advanced
2:00remaining
Interpreting Formula Bar and Cell Preview with Errors
You enter the formula =A1/B1 in cell C1. Cell A1 contains 10, and cell B1 is empty.

What will the formula bar and cell preview show in cell C1?
AFormula bar: 10/0<br>Cell preview: #VALUE!
BFormula bar: #DIV/0!<br>Cell preview: =A1/B1
CFormula bar: =A1/B1<br>Cell preview: 0
DFormula bar: =A1/B1<br>Cell preview: #DIV/0!
Attempts:
2 left
💡 Hint
Dividing by zero or empty cell causes a specific error in Excel.
🎯 Scenario
expert
3:00remaining
Predicting Cell Preview with Nested Formulas
You enter the formula =IF(SUM(A1:A3)>20, "High", "Low") in cell B1.
Cells A1, A2, and A3 contain 8, 7, and 6 respectively.

What will the formula bar and cell preview show in cell B1?
AFormula bar: =IF(SUM(A1:A3)>20, "High", "Low")<br>Cell preview: Low
BFormula bar: =IF(SUM(A1:A3)>20, "High", "Low")<br>Cell preview: High
CFormula bar: Low<br>Cell preview: =IF(SUM(A1:A3)>20, "High", "Low")
DFormula bar: High<br>Cell preview: High
Attempts:
2 left
💡 Hint
Add the numbers in A1 to A3 and compare to 20 to decide the IF result.