Dashboard Mode - Workbook, worksheet, and cell structure
Goal
Understand how Excel organizes data using workbooks, worksheets, and cells to help you find and enter information easily.
Jump into concepts and practice - no test required
Understand how Excel organizes data using workbooks, worksheets, and cells to help you find and enter information easily.
| Item | Quantity | Price |
|---|---|---|
| Apples | 10 | 0.5 |
| Bananas | 5 | 0.3 |
| Oranges | 8 | 0.6 |
| Grapes | 3 | 1.2 |
| Pears | 7 | 0.8 |
=SUM(B2:B6) (Result: 33)=AVERAGE(C2:C6) (Result: 0.68)+----------------------+----------------------+ | Total Items | Average Price | | (KPI Card) | (KPI Card) | +----------------------+----------------------+ | | | Data Table (A1:C6) | | | +----------------------------------------------+ | Explanation: Cell B2 = 10 | +----------------------------------------------+
This simple dashboard does not have filters yet. You can click on any cell in the table to see its address (like B2) in the name box above the sheet. This helps you understand how cells are named by column letter and row number.
If you select cell C4, what item and price does it show? (Answer: Grapes, 1.2)
=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.