Search

filter() ex 1

Formula Example Supporter
description
Filtering a list containing number. - This will create a new sub-list that meets a specific number condition.
example tags
formula
filter([80, 150, 200], current > 100) - Imagine you have a list of expenses. The condition applied is current > 100, filtering the list to include only expenses above $100. The resulting list contains those expenses that meet this criterion.
linked blog post
results
150,200