Dashboard Mode - Formula structure (=, cell references)
Goal
Understand how to write simple formulas using the equal sign and cell references to calculate totals and sums in Excel.
Jump into concepts and practice - no test required
Understand how to write simple formulas using the equal sign and cell references to calculate totals and sums in Excel.
| Item | Price | Quantity |
|---|---|---|
| Apples | 2 | 5 |
| Bananas | 1 | 8 |
| Oranges | 3 | 4 |
| Grapes | 4 | 3 |
| Pears | 2 | 6 |
=SUM(C2:C6)=SUMPRODUCT(B2:B6,C2:C6)=B2*C2 copied down to D6+----------------------+----------------------+ | Total Items Sold (26) | Total Sales (56) | +----------------------+----------------------+ | Sales per Item Table | | +---------+-------+----------+-----------+| | | Item | Price | Quantity | Sales ($) || | +---------+-------+----------+-----------+| | | Apples | 2 | 5 | 10 || | | Bananas | 1 | 8 | 8 || | | Oranges | 3 | 4 | 12 || | | Grapes | 4 | 3 | 12 || | | Pears | 2 | 6 | 12 || | +---------+-------+----------+-----------+| +------------------------------------------+
Add a filter to select specific items (e.g., only Apples and Bananas). When you select items, the Total Items Sold, Total Sales, and Sales per Item Table update to show only the selected items.
If you filter the data to show only "Oranges" and "Grapes", what will the Total Items Sold and Total Sales show?
Answer: Total Items Sold = 7 (4 + 3), Total Sales = 24 (12 + 12)
= sign at the start of a formula in Excel mean?= in Excel= sign tells Excel that the following text is a formula to calculate.=, Excel treats input as text or numbers, not formulas.= means calculate formula [OK]= to calculate.=A1 + B1 correctly adds values in A1 and B1.=A1*B1?=A1*B1 multiplies 5 by 3, result is 15.=A1 + B1 if it shows an error when A1 contains text 'Hello' and B1 contains 10?B2 by price per item in cell C2. Which formula correctly does this and updates automatically if values change?= to calculate.*, so =B2*C2 is correct.