0
0
Google Sheetsspreadsheet~20 mins

Cross-sheet references in Google Sheets - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Cross-Sheet Reference Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
1:30remaining
Output of a cross-sheet SUM formula
You have two sheets: Sheet1 and Sheet2. In Sheet1, cells A1 to A3 contain numbers 10, 20, and 30 respectively. In Sheet2, cell B1 contains the formula =SUM(Sheet1!A1:A3). What is the value displayed in Sheet2!B1?
ASyntax Error
B100
C60
D0
Attempts:
2 left
💡 Hint
Remember that Sheet1!A1:A3 refers to cells A1 to A3 in Sheet1.
Function Choice
intermediate
1:30remaining
Choosing the correct formula for cross-sheet average
You want to calculate the average of values in cells B2 to B6 on a sheet named Data from another sheet. Which formula will correctly do this in your current sheet?
A=AVERAGE('Data'!B2:B6)
B=AVERAGE(Data!B2:B6)
C=AVERAGE(Data!B2-B6)
D=AVERAGE(Data:B2:B6)
Attempts:
2 left
💡 Hint
Sheet names with no spaces can be used without quotes, but quotes are safer.
🎯 Scenario
advanced
2:00remaining
Fixing a broken cross-sheet reference after renaming a sheet
You have a formula in Sheet3 cell C5: =SUM(Sales!C1:C10). You renamed the sheet Sales to 2023 Sales. Now the formula shows a #REF! error. Which formula fixes the error?
A=SUM(Sales!C1:C10)
B=SUM(2023 Sales!C1:C10)
C=SUM('Sales 2023'!C1:C10)
D=SUM('2023 Sales'!C1:C10)
Attempts:
2 left
💡 Hint
Sheet names with spaces must be enclosed in single quotes.
data_analysis
advanced
1:30remaining
Analyzing cross-sheet reference impact on data update
Sheet1 column A has numbers 1 to 5. Sheet2 cell B1 has formula =SUM(Sheet1!A1:A5). If you change Sheet1!A3 from 3 to 10, what happens to Sheet2!B1?
AThe value in Sheet2!B1 updates automatically to 22
BThe value in Sheet2!B1 remains the same until you refresh manually
CSheet2!B1 value becomes 10
DSheet2!B1 shows an error because of the change
Attempts:
2 left
💡 Hint
Formulas recalculate automatically when referenced data changes.
📊 Formula Result
expert
2:30remaining
Result of INDIRECT with cross-sheet reference
In Sheet1 cell A1 you have the text Data. In the Data sheet, cells B1:B3 contain numbers 5, 10, 15 respectively. In Sheet3 cell C1 you enter the formula =SUM(INDIRECT(Sheet1!A1 & "!B1:B3")). What is the value in Sheet3!C1?
ASyntax Error
B30
C0
D#REF! error
Attempts:
2 left
💡 Hint
INDIRECT builds a reference from text. Check what A1 contains and what range it points to.