Dashboard Mode - Custom formula-based rules
Goal
Help a small store manager quickly spot which sales orders need attention by using custom formula rules to highlight orders with low quantity or high total price.
Jump into concepts and practice - no test required
Help a small store manager quickly spot which sales orders need attention by using custom formula rules to highlight orders with low quantity or high total price.
| Order ID | Product | Quantity | Unit Price | Total Price |
|---|---|---|---|---|
| 1001 | Notebook | 2 | 5 | =C2*D2 |
| 1002 | Pen | 10 | 1 | =C3*D3 |
| 1003 | Backpack | 1 | 100 | =C4*D4 |
| 1004 | Calculator | 3 | 20 | =C5*D5 |
| 1005 | Desk Lamp | 5 | 20 | =C6*D6 |
=COUNTA(A2:A6)=COUNTIF(E2:E6, ">=100")=FILTER(A2:E6, (C2:C6<3) + (E2:E6>=100))=C2<3=E2>=100+----------------------+-----------------------+ | Total Orders (KPI) | High Value Orders (KPI)| +----------------------+-----------------------+ | | | Orders with Attention Needed | | (Filtered Table) | | | +--------------------------------------+
The filtered table updates automatically based on the custom formula rules for quantity and total price. If the data changes, the table and conditional formatting highlight the relevant rows instantly without manual filtering.
Add a filter to show only orders where Quantity < 3. Which components update?
=B2>50?=C2="Done". But no cells get highlighted. What is the problem?