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 output of this formula?
Given the values in cells A1=5 and B1=3, what will be the result in cell C1 after entering the formula
=A1+B1*2?Google Sheets
=A1+B1*2Attempts:
2 left
💡 Hint
Remember the order of operations: multiplication before addition.
✗ Incorrect
The formula multiplies B1 by 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, updating automatically if any value changes. Which formula should you use?
Attempts:
2 left
💡 Hint
Look for a function that adds a range of cells.
✗ Incorrect
The SUM function adds all numbers in the range and updates automatically when any cell changes.
❓ data_analysis
advanced2:00remaining
What happens when you copy a formula with relative references?
If cell B2 contains the formula
=A1+10 and you copy it to cell B3, what will the formula in B3 be?Attempts:
2 left
💡 Hint
Relative references change based on the position where the formula is copied.
✗ Incorrect
Copying the formula down one row changes the reference from A1 to A2 because it is relative.
🎯 Scenario
advanced2:00remaining
How to keep a cell reference fixed when copying a formula?
You want to multiply values in column A by the value in cell B1, but when copying the formula down, the reference to B1 should not change. Which formula should you use in cell C2?
Attempts:
2 left
💡 Hint
Use dollar signs to fix the reference to B1.
✗ Incorrect
The formula =A2*$B$1 keeps the reference to B1 fixed when copied down.
🧠 Conceptual
expert2:00remaining
Why do formulas automate calculations in spreadsheets?
Which statement best explains why formulas automatically update results when data changes in a spreadsheet?
Attempts:
2 left
💡 Hint
Think about how spreadsheets track dependencies between cells.
✗ Incorrect
Formulas depend on other cells. When those cells change, the spreadsheet recalculates the formula automatically.