Sample Data
This data represents a simple worksheet with three columns: Name, Age, and City, and three rows of data entries.
| Cell | Value |
|---|---|
| A1 | Name |
| B1 | Age |
| C1 | City |
| A2 | Alice |
| B2 | 30 |
| C2 | New York |
| A3 | Bob |
| B3 | 25 |
| C3 | Los Angeles |
| A4 | Carol |
| B4 | 28 |
| C4 | Chicago |
Jump into concepts and practice - no test required
This data represents a simple worksheet with three columns: Name, Age, and City, and three rows of data entries.
| Cell | Value |
|---|---|
| A1 | Name |
| B1 | Age |
| C1 | City |
| A2 | Alice |
| B2 | 30 |
| C2 | New York |
| A3 | Bob |
| B3 | 25 |
| C3 | Los Angeles |
| A4 | Carol |
| B4 | 28 |
| C4 | Chicago |
=B2A B C 1 | Name | Age | City | 2 | Alice | 30 | New York | 3 | Bob | 25 | Los Angeles | 4 | Carol | 28 | Chicago | Formula in cell D1: =B2 Arrow points from D1 to B2
A B C D 1 | Name | Age | City | 30 | 2 | Alice | 30 | New York | | 3 | Bob | 25 | Los Angeles | | 4 | Carol | 28 | Chicago | |
=B2+5 in cell C2, what will be the value shown in C2?=B2+5 adds 5 to the value in cell B2.=A1+B1 in cell C1, but it shows an error. Which of these could fix the problem?=A1+B1 to calculate correctly.Jan, Feb, and Mar. In cell A1 of Feb, you want to show the value from cell B2 of Jan. Which formula should you enter in Feb!A1?=SheetName!CellAddress.Feb, to get Jan sheet's B2 cell, write =Jan!B2.