Setting Filter on a Date Column

I have a column with a date format yyyy-mm-dd
with values from 2018-12-27 to 2024-03-07
and I only need the rows from 2024-02-01 to 2024-02-29

How can I set a filter for these column without marking all 29 days

Thank you for support

Hello @klaus and welcome to the Community!

You can use the "Filter by condition" action with the following expression:

[Date] >= #2024-02-01 and [Date] <= #2024-02-29

Where [Date] is the name of the column with dates.

Check out also our tutorial on dates and expressions: EasyMorph | Type system and expressions

Thank you for helping to solve my problem

You're welcome :slight_smile: