Skip to main content
FLO.W 思流Notion Formulas
Back to function index

every

A quick reference for the Notion every function, including syntax, purpose, return value, and examples.

Quick reference

ItemDetails
Functionevery()
CategoryLists
Syntaxevery(list, condition)
PurposeCheck whether every item matches
Return valueBoolean

Official example of the every function in the Notion formula editor

Examples and notes

At least one task is overdue:

prop("Tasks").some(not(empty(current.prop("Due Date"))) and current.prop("Due Date") < today() and current.prop("Status") != "Completed")

All tasks are completed:

prop("Tasks").every(current.prop("Status") == "Completed")

To use these formulas directly in task reminders, project progress, note heatmaps, and reports, continue with FLO.W Notion Template.

Back to function index

Last updated on