Challenge - 5 Problems
AutoFill Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2:00remaining
AutoFill formula with relative references
You enter the formula
=A1+B1 in cell C1 and then use AutoFill to copy it down to C2 and C3. What will be the formula in cell C3?Attempts:
2 left
💡 Hint
Think about how relative references change when you copy formulas down rows.
✗ Incorrect
When you copy a formula down, relative references adjust by the number of rows moved. From C1 to C3 is 2 rows down, so A1 becomes A3 and B1 becomes B3.
📊 Formula Result
intermediate2:00remaining
AutoFill formula with mixed references
You enter the formula
=A$1+B2 in cell C2 and then use AutoFill to copy it down to C4. What will be the formula in cell C4?Attempts:
2 left
💡 Hint
Remember that the dollar sign before the row number fixes the row when copying.
✗ Incorrect
The reference A$1 fixes the row 1, so it stays A$1 when copied down. The B2 reference is relative and changes to B4 when copied two rows down.
❓ Function Choice
advanced2:00remaining
Choosing the correct formula for AutoFill across columns
You want to sum values in row 1 from columns A to D and place the sums in row 2, columns A to D respectively. Which formula should you enter in cell A2 and then AutoFill across to D2 to get correct sums for each column?
Attempts:
2 left
💡 Hint
Consider how column and row references behave when copying formulas across columns.
✗ Incorrect
Using A$1 fixes the row 1 but allows the column to change if copied across columns. Copying across columns changes the column letter, so A$1 becomes B$1, C$1, etc., summing each column's row 1 value.
🎯 Scenario
advanced2:00remaining
AutoFill with absolute references to fix a cell
You have a tax rate in cell B1. You want to calculate tax for amounts in column A starting from A2. You write the formula
=A2*B1 in cell C2 and AutoFill it down. What should you change in the formula to keep the tax rate fixed when copying down?Attempts:
2 left
💡 Hint
Use dollar signs to fix both column and row of the tax rate cell.
✗ Incorrect
To keep the tax rate fixed at B1 when copying down, use absolute reference $B$1. This prevents the reference from changing as the formula is copied.
❓ data_analysis
expert3:00remaining
Analyzing AutoFill behavior with mixed references in a large table
You have a table with sales data in columns A to D and rows 2 to 10. You want to calculate a 10% commission for each sale in column E. You enter the formula
=B2*$D$1 in cell E2 and AutoFill it down to E10. What will be the formula in cell E10?Attempts:
2 left
💡 Hint
Check how relative and absolute references behave when copying formulas down rows.
✗ Incorrect
B2 is a relative reference and changes to B10 when copied down 8 rows. $D$1 is absolute and stays fixed at D1.