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 following values in Excel:
A1 = 10
B1 = 5
What is the result in cell C1 if the formula
A1 = 10
B1 = 5
What is the result in cell C1 if the formula
=A1 + B1 * 2 is entered?Attempts:
2 left
💡 Hint
Remember the order of operations: multiplication happens before addition.
✗ Incorrect
The formula multiplies B1 (5) by 2 first, giving 10, then adds A1 (10), resulting in 10 + 10 = 20. Option A.
❓ Function Choice
intermediate2:00remaining
Which formula correctly adds values from cells A1 and B1?
You want to add the values in cells A1 and B1 in Excel. Which formula will do this correctly?
Attempts:
2 left
💡 Hint
Formulas in Excel must start with an equal sign and use correct syntax.
✗ Incorrect
Option C is correct because formulas must start with '=' and use '+' to add. Option C lacks '=' so Excel treats it as text. Option C is missing a comma between A1 and B1. Option C uses a non-existent function ADD.
🎯 Scenario
advanced2:00remaining
Fix the formula to correctly multiply cell A2 by 3
You entered
A2 *3 in cell B2 but it shows an error. Which corrected formula will work?Attempts:
2 left
💡 Hint
Check for spaces and the equal sign at the start.
✗ Incorrect
The original lacked the '=' so treated as text. Option A (=A2*3) is correct and standard with no spaces. A and C also work with spaces (allowed in Excel). D lacks '='.
📊 Formula Result
advanced2:00remaining
What is the output of this formula with mixed references?
Given:
A1 = 4
B1 = 6
What is the result of the formula
A1 = 4
B1 = 6
What is the result of the formula
=A1 + $B$1 when copied from C1 to C2?Attempts:
2 left
💡 Hint
Remember $ locks the cell reference when copying formulas.
✗ Incorrect
A1 is relative and changes when copied down, so in C2 it becomes A2 (empty or zero). $B$1 is absolute and stays B1 (6). So in C1: 4 + 6 = 10. In C2: 0 + 6 = 6. Option B.
❓ data_analysis
expert3:00remaining
How many cells contain formulas after copying?
You have a formula
You copy this formula down to B3.
How many cells in B1:B3 contain formulas that sum exactly three cells?
=SUM(A1:A3) in cell B1.You copy this formula down to B3.
How many cells in B1:B3 contain formulas that sum exactly three cells?
Attempts:
2 left
💡 Hint
Check how the range changes when copying formulas down.
✗ Incorrect
In B1: =SUM(A1:A3) (3 cells).
In B2: =SUM(A2:A4) (3 cells).
In B3: =SUM(A3:A5) (3 cells).
All 3 sum exactly three cells. Option D.
In B2: =SUM(A2:A4) (3 cells).
In B3: =SUM(A3:A5) (3 cells).
All 3 sum exactly three cells. Option D.