Complete the formula to reference cell A1 from the sheet named 'Sales'.
=Sales![1]The correct way to reference cell A1 in another sheet named 'Sales' is =Sales!A1.
Complete the formula to sum cells A1 to A5 from the sheet named 'Data'.
=SUM(Data![1])The correct range reference is A1:A5. So the formula is =SUM(Data!A1:A5).
Fix the error in the formula to reference cell B2 from the sheet named '2023 Sales'.
='2023 Sales'![1]
When a sheet name has spaces or starts with a number, it must be enclosed in single quotes. The correct cell reference is B2.
Fill both blanks to create a formula that multiplies cell A1 from 'Sheet1' by cell B1 from 'Sheet2'.
=Sheet1![1] * Sheet2![2]
The formula multiplies Sheet1!A1 by Sheet2!B1.
Fill all three blanks to create a formula that sums cells A1 to A3 from 'Jan', 'Feb', and 'Mar' sheets.
=SUM(Jan![1], Feb![2], Mar![3])
The formula sums the range A1:A3 from each sheet: Jan, Feb, and Mar.