Building a Small Table
Part of the Fundamentals section of Coddy's Excel journey — lesson 7 of 42.
Single cells are fine, but spreadsheets shine when data is organized into a table: a block of cells where each column holds one kind of information and each row describes one item.
The top row of a table is the header row. It doesn't contain data, it contains labels that tell the reader what each column means. Below it come the data rows, one item per row:
A B
1 Fruit Qty <- header row (labels)
2 Apples 12 <- data row: one fruit
3 Bananas 8 <- data row: another fruitSee how everything lines up? All the fruit names live in column A, all the quantities in column B, and each row reads like a little sentence: "Apples, 12 of them." The value that belongs to Apples (in A2) sits right beside it in B2.
This shape, headers in row 1, one item per row, one kind of value per column, is how almost every real spreadsheet is organized, from shop inventories to grade books. Build it neatly now and every formula you write later gets easier.
Challenge
BeginnerBuild the fruit table from the lesson. The first header, Fruit in A1, is already in place, add the rest:
- In
B1: the headerQty - Row 2, first fruit:
ApplesinA2, the number12inB2 - Row 3, second fruit:
BananasinA3, the number8inB3
When you're done, row 1 should read like labels and rows 2, 3 like entries in a tiny inventory.
Try it yourself
| A | B | C | D | E | F | G | |
|---|---|---|---|---|---|---|---|
| 1 | Fruit | ||||||
| 2 | |||||||
| 3 | |||||||
| 4 | |||||||
| 5 | |||||||
| 6 | |||||||
| 7 | |||||||
| 8 | |||||||
| 9 | |||||||
| 10 | |||||||
| 11 | |||||||
| 12 | |||||||
| 13 | |||||||
| 14 |
This lesson includes a short quiz. Start the lesson to answer it and track your progress.
All lessons in Fundamentals
1Meet the Spreadsheet
What Is a Spreadsheet?Cells and ReferencesYour First CellsRows, Columns and the GridRecap: Meet the Grid