Dashboard Mode - SEQUENCE function
Goal
Create a dashboard that shows a list of numbers generated automatically using the SEQUENCE function. This helps to quickly produce numbered lists for tasks like attendance, inventory IDs, or daily tracking.
Create a dashboard that shows a list of numbers generated automatically using the SEQUENCE function. This helps to quickly produce numbered lists for tasks like attendance, inventory IDs, or daily tracking.
| Task | Status |
|---|---|
| Prepare report | Done |
| Send emails | Pending |
| Update website | Done |
| Call clients | Pending |
| Backup files | Done |
=SEQUENCE(5,1,1,1)=COUNTIF(C2:C6,"Done")=COUNTIF(C2:C6,"Pending")+----------------------+----------------+---------+---------------------+ | Number List (A2:A6) | Task List | Status | Summary (E2:E3) | | 1 | Prepare report | Done | Done: 3 | | 2 | Send emails | Pending | Pending: 2 | | 3 | Update website | Done | | | 4 | Call clients | Pending | | | 5 | Backup files | Done | | +----------------------+----------------+---------+---------------------+
Currently, this dashboard is static. To add interactivity, you could add a filter dropdown to select task status (Done or Pending). When a status is selected, the Number List, Task List, and Status List update to show only tasks with that status. The summary counts would also update accordingly.
If you add a filter to show only tasks with status "Done", which components update?