Repeating group filtered by creation date

Hello,

I need set a repeating group to show data filtered by day for example:

Created today;
Created seven days ago;
Created fifteen days ago;
Created thirty days ago.

Thanks in advance!

Use the created date as the search constraint, and set a minimum and maximum date based on whatever you’re trying to filter by.

e.g. to show things created 7 days ago use the following 2 constraints:

Created date ≥ current date/time: rounded down to day: + (days) -7

Created date < current date/time: rounded down to day: + (days) -6

Hey Adam, thanks for your help dear!

How can I do for today for example?

Created date ≥ current date/time: rounded down to day

Created date < current date/time: rounded down to day: + (days) 1

Thank you so much Adam!!