0
0
Excelspreadsheet~20 mins

Referencing other worksheets in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Worksheet Reference Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
What is the output of this formula referencing another sheet?
Given a workbook with two sheets: Sheet1 and Sheet2. Cell A1 in Sheet2 contains the number 50.

In Sheet1 cell B1, the formula =Sheet2!A1 + 20 is entered.

What value will appear in Sheet1 cell B1?
A50
B70
C#REF!
D20
Attempts:
2 left
💡 Hint
Remember that referencing another sheet uses the sheet name followed by an exclamation mark and the cell address.
Function Choice
intermediate
2:00remaining
Which formula correctly sums values from another worksheet?
You want to sum the range A1:A5 from a worksheet named Data into your current sheet.

Which formula will do this correctly?
A=SUM('Data'!A1:A5)
B=SUM(Data!A1:A5)
C=SUM(Data!A1;A5)
D=SUM(Data!A1-A5)
Attempts:
2 left
💡 Hint
Use single quotes around sheet names when they contain spaces or special characters. For simple sheet names without spaces, quotes are optional.
📊 Formula Result
advanced
2:00remaining
What error does this formula produce?
In a workbook, you have a sheet named 2023 Sales.

You enter the formula =2023 Sales!B2 * 2 in another sheet.

What error will Excel show?
A#VALUE!
B#REF!
C#NAME?
DNo error, correct calculation
Attempts:
2 left
💡 Hint
Sheet names with spaces must be enclosed in single quotes.
🎯 Scenario
advanced
2:00remaining
Referencing a cell from a dynamically named sheet
You have sheets named Jan, Feb, and Mar.

In cell A1 of your summary sheet, you type the month name (e.g., "Feb").

You want to get the value from cell B2 of the sheet named in A1.

Which formula will correctly do this?
A=INDIRECT("'" & A1 & "'!B2")
B=A1!B2
C=INDIRECT("B2" & A1)
D=INDIRECT(A1 & "!B2")
Attempts:
2 left
💡 Hint
Use INDIRECT with single quotes around sheet names when they might have spaces or special characters.
data_analysis
expert
3:00remaining
How many cells are summed by this formula?
In a workbook, you have a sheet named Sales Data.

The formula =SUM('Sales Data'!A1:C3) is entered in another sheet.

How many individual cells does this formula add together?
A9
B3
C6
D12
Attempts:
2 left
💡 Hint
Count the number of rows times the number of columns in the range.