0
0
Excelspreadsheet~5 mins

Referencing other worksheets in Excel - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is the basic formula to reference cell A1 from a worksheet named 'Sales'?
Use =Sales!A1. This tells Excel to get the value from cell A1 in the 'Sales' worksheet.
Click to reveal answer
beginner
How do you reference a cell from a worksheet with spaces in its name, like 'Monthly Sales'?
Put single quotes around the sheet name: ='Monthly Sales'!A1. The quotes help Excel understand the full sheet name.
Click to reveal answer
intermediate
What happens if you delete or rename a worksheet that a formula references?
The formula will show an error like #REF! because Excel can’t find the sheet or cell anymore.
Click to reveal answer
intermediate
How can you reference the same cell across multiple worksheets in a formula?
Use a 3D reference like =SUM(Sheet1:Sheet3!A1) to add values from cell A1 in all sheets from Sheet1 to Sheet3.
Click to reveal answer
beginner
Why is it useful to reference other worksheets instead of copying data?
Referencing keeps data linked and updated automatically. If the source changes, your formula shows the new value without extra work.
Click to reveal answer
How do you write a formula to get the value from cell B2 in a worksheet named 'Budget'?
A=B2!Budget
B=Budget!B2
C='Budget'!B2
D=Budget:B2
Which formula correctly references cell C3 in a sheet named 'Year 2024'?
A='Year 2024'!C3
B=Year_2024!C3
C=Year 2024!C3
D=Year2024!C3
What error appears if a referenced worksheet is deleted?
A#NAME?
B#VALUE!
C#REF!
D#DIV/0!
How do you sum cell A1 across sheets named Jan, Feb, and Mar?
A=SUM(Jan:Mar!A1)
B=SUM(Jan,Feb,Mar!A1)
C=SUM(A1!Jan:Mar)
D=SUM(Jan!A1, Feb!A1, Mar!A1)
Why use worksheet references instead of copying data?
ATo make the file size bigger
BTo prevent errors
CTo avoid using formulas
DTo keep data updated automatically
Explain how to reference a cell from another worksheet that has spaces in its name.
Think about how Excel handles sheet names with spaces.
You got /3 concepts.
    Describe what a 3D reference is and give an example.
    It sums or calculates across sheets in a range.
    You got /3 concepts.