Challenge - 5 Problems
Spreadsheet Cell Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate1:30remaining
What value will cell B2 show?
Given the following values:
A1 = 10
A2 = 20
Cell B2 contains the formula
What is the value displayed in B2?
A1 = 10
A2 = 20
Cell B2 contains the formula
=A1 + A2.What is the value displayed in B2?
Attempts:
2 left
💡 Hint
Remember, formulas calculate values, not show the formula text.
✗ Incorrect
The formula adds the values in A1 and A2: 10 + 20 = 30.
❓ Function Choice
intermediate1:30remaining
Which formula correctly reads the value from cell C3?
You want to display the value from cell C3 in cell D3.
Which formula should you enter in D3?
Which formula should you enter in D3?
Attempts:
2 left
💡 Hint
To show the exact value of another cell, use a direct reference.
✗ Incorrect
Using =C3 copies the value from C3 directly. SUM(C3) works but is unnecessary here. READ and GETVALUE are not valid functions.
📊 Formula Result
advanced2:00remaining
What is the output of this formula in cell E1?
Assume:
A1 = 5
B1 = 3
Formula in E1:
What value will E1 show?
A1 = 5
B1 = 3
Formula in E1:
=IF(A1 > B1, A1 * 2, B1 * 2)What value will E1 show?
Attempts:
2 left
💡 Hint
Check the condition A1 > B1 and then calculate accordingly.
✗ Incorrect
Since 5 > 3 is true, the formula returns A1 * 2 = 5 * 2 = 10.
🎯 Scenario
advanced2:00remaining
You want to write a formula in cell F2 that always reads the value from cell A1, even if you copy the formula to other cells. Which formula should you use?
You want to copy the formula from F2 to G2 and H2, but always get the value from A1.
Which formula in F2 achieves this?
Which formula in F2 achieves this?
Attempts:
2 left
💡 Hint
Use dollar signs to fix both column and row references.
✗ Incorrect
=$A$1 locks both the column and row, so copying the formula keeps referencing A1.
❓ data_analysis
expert2:30remaining
How many cells contain numeric values after applying this formula in column D?
Given the data:
A1=10, A2="Text", A3=15, A4="", A5=20
Formula in D1:D5:
How many TRUE values will appear in D1:D5?
A1=10, A2="Text", A3=15, A4="", A5=20
Formula in D1:D5:
=ISNUMBER(A1), =ISNUMBER(A2), etc.How many TRUE values will appear in D1:D5?
Attempts:
2 left
💡 Hint
ISNUMBER returns TRUE only for numeric values.
✗ Incorrect
Cells A1, A3, and A5 contain numbers, so 3 TRUE values appear.