Hi,
If you're using the field CreatedOn (or any other system filled field), you can filter by using this formula as an example :
Filter([DATASOURCE] , [DATE] >= Today() And [DATE] < DateAdd(Today() , 1) )
Using Today() will return to today date, instead of Now() which will return today date AND time.
Then, we compare the date field where date >= 2023-11-14 AND date < 2023-11-15 (for today), so you will have all items created beteewen 00h01 and 23h59 today
Regards