Sample Data
Sheet1 has numbers in cells A1 to A3. Sheet2 has numbers in cells B1 to B3.
| Cell | Value |
|---|---|
| Sheet1!A1 | 10 |
| Sheet1!A2 | 20 |
| Sheet1!A3 | 30 |
| Sheet2!B1 | 5 |
| Sheet2!B2 | 15 |
| Sheet2!B3 | 25 |
Jump into concepts and practice - no test required
Sheet1 has numbers in cells A1 to A3. Sheet2 has numbers in cells B1 to B3.
| Cell | Value |
|---|---|
| Sheet1!A1 | 10 |
| Sheet1!A2 | 20 |
| Sheet1!A3 | 30 |
| Sheet2!B1 | 5 |
| Sheet2!B2 | 15 |
| Sheet2!B3 | 25 |
=Sheet1!A1 + Sheet2!B2Sheet1 Sheet2 +-----+ +-----+ | A1 | | B1 | | 10 | | 5 | +-----+ +-----+ | A2 | | B2 | | 20 | | 15 | <-- referenced +-----+ +-----+ | A3 | | B3 | | 30 | | 25 | +-----+ +-----+
Sheet3 +-----+ | C1 | | 25 | <-- result of =Sheet1!A1 + Sheet2!B2 +-----+
Sales in another worksheet?SheetName!CellAddress.Sales and cell A1, the correct reference is =Sales!A1.Annual Report (note the space in the name)?='Annual Report'!B2 with single quotes around the sheet name.Data and Summary. Cell A1 in Data contains the number 10. What will be the result in cell B1 of Summary if the formula =Data!A1 * 2 is entered?2023 Sales, but your formula =2023 Sales!C3 returns a #NAME? error. What is the correct fix?2023 as a number and Sales as an unknown name, causing the error.='2023 Sales'!C3.Jan, Feb, and Mar. Each sheet has sales data in cell B5. In a summary sheet, which formula correctly sums the sales from all three months?Sheet1:Sheet3!Cell syntax.=SUM(Jan:Mar!B5) sums cell B5 across all sheets from Jan through Mar.