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.
Jump into concepts and practice - no test required
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?
COUNT function do in Excel?=COUNT(A1:A5)?=COUNT(B1:B6) returns 3. What is the likely problem?