Challenge - 5 Problems
Formula Mastery Badge
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2:00remaining
What is the result of this formula?
Given the values in cells A1=5 and B1=3, what will be the result in cell C1 if the formula
=A1+B1*2 is entered?Attempts:
2 left
💡 Hint
Remember the order of operations: multiplication before addition.
✗ Incorrect
The formula calculates B1*2 first (3*2=6), then adds A1 (5+6=11). So the result is 11.
❓ Function Choice
intermediate2:00remaining
Which formula automatically updates when data changes?
You want a cell to always show the total of cells A1 through A5. Which formula should you use?
Attempts:
2 left
💡 Hint
Look for a formula that adds a range of cells and updates automatically.
✗ Incorrect
The =SUM(A1:A5) formula adds all values in the range and updates if any cell changes.
🎯 Scenario
advanced2:00remaining
Why does a formula update automatically?
You enter
=A1*B1 in cell C1. Later, you change the value in B1. Why does C1 update automatically?Attempts:
2 left
💡 Hint
Think about how formulas track cell references.
✗ Incorrect
Formulas in Excel automatically recalculate when any cell they refer to changes, so C1 updates when B1 changes.
📊 Formula Result
advanced2:00remaining
What is the output of this formula with mixed references?
If A1=4, A2=4, B1=3, and you enter
=A1*$B$1 in C1 and copy it to C2, what is the value in C2?Attempts:
2 left
💡 Hint
Remember that $B$1 is an absolute reference and does not change when copied.
✗ Incorrect
In C2, the formula becomes =A2*$B$1, which is 4*3=12.
❓ data_analysis
expert3:00remaining
How many cells will update if you change A1 in this sheet?
You have formulas: C1 = A1+B1, C2 = C1*2, C3 = C2 + A1, and D1 = B1 + 5. If you change A1, how many of these cells will update automatically?
Attempts:
2 left
💡 Hint
Trace which formulas depend directly or indirectly on A1.
✗ Incorrect
C1 depends on A1, so it updates. C2 depends on C1, so it updates. C3 depends on C2 and A1, so it updates. D1 depends only on B1, so it does not update. Total 3 cells update.