0
0
Excelspreadsheet~20 mins

Workbook, worksheet, and cell structure in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Workbook Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
1:30remaining
What is the value in cell B2 after entering this formula?
You have a worksheet where cell A1 contains 10 and cell A2 contains 20. In cell B2, you enter the formula =A1 + A2. What is the value shown in cell B2?
A10 20
BA1 + A2
C30
DError
Attempts:
2 left
💡 Hint
Remember that formulas calculate values from referenced cells.
Function Choice
intermediate
1:30remaining
Which formula correctly references cell C3 in another worksheet named 'Sales'?
You want to get the value from cell C3 in the worksheet named 'Sales'. Which formula should you enter in your current worksheet?
A=Sales!C3
B=C3!Sales
C='Sales:C3'
D=Sheet.Sales.C3
Attempts:
2 left
💡 Hint
Worksheet references use an exclamation mark after the sheet name.
data_analysis
advanced
1:30remaining
How many cells are included in the range A1:C3?
Consider the cell range A1:C3 in a worksheet. How many individual cells does this range include?
A9
B6
C12
D3
Attempts:
2 left
💡 Hint
Count the number of rows and columns in the range and multiply.
🎯 Scenario
advanced
2:00remaining
You want to keep a cell reference fixed when copying a formula. Which reference style should you use?
You have a formula in cell B1 that references cell A1. You want to copy the formula to other cells but always refer to A1. Which reference style should you use in the formula?
AA1
BA$1
C$A1
D$A$1
Attempts:
2 left
💡 Hint
Use dollar signs to lock both column and row.
🧠 Conceptual
expert
2:00remaining
What error occurs if you enter a formula with a circular reference in Excel?
You enter a formula in cell A1 that directly or indirectly refers back to cell A1 itself. What happens when you try to calculate this formula?
AThe formula returns zero without warning
BExcel shows a circular reference warning and may not calculate the formula
CExcel automatically fixes the formula to avoid the loop
DExcel crashes immediately
Attempts:
2 left
💡 Hint
Think about what happens when a formula depends on its own result.