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

findIndex

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

Quick reference

ItemDetails
FunctionfindIndex()
CategoryLists
SyntaxfindIndex(list, condition)
PurposeFind the position of the first matching item
Return valueNumber

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