Dashboard Mode - MIN and MAX functions
Goal
Find the smallest and largest sales amounts from a list of sales data to understand the range of sales performance.
Find the smallest and largest sales amounts from a list of sales data to understand the range of sales performance.
| Salesperson | Sales Amount |
|---|---|
| Alice | 250 |
| Bob | 400 |
| Charlie | 150 |
| Diana | 300 |
| Eva | 500 |
=MIN(B2:B6)=MAX(B2:B6)+----------------+----------------+ | Minimum Sales | Maximum Sales | | 150 | 500 | +----------------+----------------+ | Sales Data Table | | Salesperson | Sales Amount | | Alice | 250 | | Bob | 400 | | Charlie | 150 | | Diana | 300 | | Eva | 500 | +---------------------------------+
Add a filter to select specific salespersons. When you choose a salesperson, the Minimum Sales and Maximum Sales cards update to show the smallest and largest sales amounts only for the selected salesperson(s). The Sales Data Table also updates to show only the filtered rows.
If you add a filter to show only salespersons with sales above 300, which components update and what are their new values?