Search

filter() ex 5

Formula Example Supporter
description
Filtering the list containing pages - This will generate a new sub-list that satisfies a specific condition based on the page or its property.
example tags
formula
filter(prop("Tasks"), current.Status.contains("Done")) - Let’s say there’s a relation property named Tasks containing three items: [Item 1, Item 2, Item 3]. Each item has a status property called Status: - Item 1 with status Not Started - Item 2 with status In Progress - Item 3 with status Done The filter looks for the page with the Status Done, current.Status.contains("Done"), and filters the pages that meet this condition.
linked blog post
results