Dashboard Mode - COUNT and COUNTA functions
Dashboard Goal
Understand how many sales entries are recorded and how many cells contain any data in the sales report.
Understand how many sales entries are recorded and how many cells contain any data in the sales report.
| Sale ID | Product | Quantity | Price | Notes |
|---|---|---|---|---|
| 101 | Pen | 10 | 1.5 | First order |
| 102 | Notebook | 5 | 3.0 | |
| 103 | Pen | 15 | 1.5 | Urgent |
| 104 | ||||
| 105 | Marker | 7 | 2.0 | |
| Notebook | 3 | 3.0 | Repeat | |
| 107 | Pen | 8 | 1.5 |
=COUNT(A2:A8)=COUNTA(B2:B8)=COUNTA(E2:E8)+----------------------+------------------------------+------------------------------+ | Count of Sale IDs | Count of Products | Count of Notes | | (COUNT) | (COUNTA) | (COUNTA) | | [ 6 ] | [ 6 ] | [ 3 ] | +----------------------+------------------------------+------------------------------+ | Sales Data Table | | (Rows 2 to 8) | +---------------------------------------------------------------------------+
Add a filter for Product to select a specific product like "Pen". When you choose "Pen":
COUNT(A2:A8) updates to count Sale IDs only for "Pen" rows.COUNTA(B2:B8) updates to count only visible Product cells after filter.COUNTA(E2:E8) updates to count Notes only for filtered rows.If you add a filter for Product = "Notebook", which components update and what are their new values?