Complete the formula to get the value from cell A1 in the sheet named 'Data'.
=Data![1]The correct way to reference cell A1 in another sheet named 'Data' is Data!A1.
Complete the formula to sum the range B2:B5 from the sheet named 'Sales'.
=SUM(Sales![1])To sum cells B2 to B5 in the 'Sales' sheet, use Sales!B2:B5 inside the SUM function.
Fix the error in the formula to reference cell C3 from the sheet named '2023 Data'.
='[1]'!C3
When a sheet name has spaces, you must enclose it in single quotes in the formula. The formula already has quotes around the blank, so just put the sheet name without extra quotes.
Fill both blanks to create a formula that gets the value from cell D4 in the sheet named 'Summary 2024'.
='[1]'![2]
The sheet name has a space, so it must be in single quotes. The cell reference is D4.
Fill all three blanks to create a formula that sums the range A1:A10 from the sheet named 'Expenses 2023'.
=SUM('[1]'![2]:[3])
The sheet name with spaces needs quotes. The range is from A1 to A10.