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

some

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

Quick reference

ItemDetails
Functionsome()
CategoryLists
Syntaxsome(list, condition)
PurposeWhether at least one item matches a condition
Return valueBoolean

Official example of the some 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