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

find

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

Quick reference

ItemDetails
Functionfind()
CategoryLists
Syntaxfind(list, condition)
PurposeFind the first matching item
Return valueAny type

Official example of the find function in the Notion formula editor

Examples and notes

Find the first high-priority task:

prop("Tasks").find(current.prop("Priority") == "High")

Find the position of the first high-priority task:

prop("Tasks").findIndex(current.prop("Priority") == "High")

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