Dashboard Mode - COUNT and COUNTA functions
Dashboard Goal
Understand how many cells contain numbers and how many cells are not empty in a list of sales data.
Understand how many cells contain numbers and how many cells are not empty in a list of sales data.
| Item | Sales |
|---|---|
| Apples | 100 |
| Bananas | 200 |
| Cherries | |
| Dates | 150 |
| Elderberries | abc |
| Figs | 300 |
| Grapes |
=COUNT(B2:B8)=COUNTA(B2:B8)+----------------------+-------------------------+ | Count of Number | Count of Non-Empty | | Sales (KPI Card 1) | Sales (KPI Card 2) | | [ 5 ] | [ 5 ] | +----------------------+-------------------------+ | | | Sales Data Table | | | +------------------------------------------------------+
Add a filter to select only items with sales greater than 100. Both KPI cards and the data table update to show counts and data only for filtered items.
If you add a filter to show only items where sales are numbers greater than 150, which components update and what are their new values?