Dashboard Mode - NOT function
Goal
Find out which tasks are not completed in a simple task list.
Find out which tasks are not completed in a simple task list.
| Task | Completed? |
|---|---|
| Buy groceries | TRUE |
| Clean house | FALSE |
| Pay bills | TRUE |
| Call mom | FALSE |
| Walk dog | TRUE |
=COUNTIF(B2:B6,FALSE)=NOT(B2) copied down to C6+----------------------+----------------------+ | KPI Card | Filtered List | | "Not Completed"=2 | Tasks not done here | +----------------------+----------------------+ | Data Table (Task, Completed?, NOT) | +-----------------------------------------------------+
Apply a filter on the NOT column (column C) to show only tasks where the value is TRUE. This updates the filtered list to show only tasks not completed. The KPI card updates automatically because it counts FALSE in the Completed? column.
If you add a filter to show only tasks where Completed? is TRUE, which components update?