Recall & Review
beginner
What is a cross-sheet reference in Google Sheets?
A cross-sheet reference is a formula that gets data from a different sheet within the same spreadsheet file. It helps you use information from one sheet in another.
Click to reveal answer
beginner
How do you write a formula to reference cell A1 from a sheet named 'Sales'?
You write it as
=Sales!A1. The sheet name, an exclamation mark, then the cell address.Click to reveal answer
beginner
What should you do if the sheet name has spaces or special characters?
Put single quotes around the sheet name, like
='Monthly Sales'!B2.Click to reveal answer
intermediate
Can you use cross-sheet references in formulas like SUM or AVERAGE?
Yes! For example,
=SUM(Sheet2!A1:A10) adds values from another sheet.Click to reveal answer
intermediate
What happens if you delete or rename a sheet that a cross-sheet formula refers to?
The formula will show an error because it can’t find the sheet. You need to fix the formula or restore the sheet.
Click to reveal answer
How do you reference cell B3 from a sheet named 'Expenses'?
✗ Incorrect
The correct syntax is sheet name, exclamation mark, then cell address: =Expenses!B3
If a sheet name has spaces, how should you write the reference?
✗ Incorrect
Sheet names with spaces need single quotes around them: ='Monthly Sales'!A1
Which formula sums cells A1 to A5 on a sheet named 'Data'?
✗ Incorrect
The correct syntax is =SUM(Data!A1:A5) to sum cells from another sheet.
What error occurs if you reference a deleted sheet?
✗ Incorrect
Referencing a deleted sheet causes a #REF! error because the reference is invalid.
Can you use cross-sheet references to pull data from a different spreadsheet file?
✗ Incorrect
To get data from another spreadsheet file, use IMPORTRANGE, not simple cross-sheet references.
Explain how to write a formula that references a cell from another sheet, including if the sheet name has spaces.
Think about the syntax with and without spaces in sheet names.
You got /2 concepts.
Describe what happens when you delete or rename a sheet that a cross-sheet formula refers to and how to fix it.
Consider what the formula is trying to find and what happens if it can't.
You got /2 concepts.