Search

filter() ex 3

Formula Example Supporter
description
Filtering list containing dates - This will create a new sub-list that meets a specific date condition.
example tags
formula
filter([parseDate("2023-01-01"), parseDate("2023-12-31"), parseDate("2022-05-15")], current > parseDate("2023-01-02")) - Let’s say you have a list of dates. The condition compares each date in the list against January 2, 2023, to check if it is greater than that date. The resulting list will include only those dates that meet this criterion.
linked blog post
results
@12/31/2023,@5/15/2024