I have a date column with a DateTime data type, and I want to filter only one day of data, specifically from '2023-01-01 00:00:00' to '2023-01-01 23:59:59'. However, when using the following two formulas, they don't seem to be working for me:
- [date] = DateTimeAdd(DateTimeNow(), -3, "days")
- [date] >= DateTimeFormat("2023-01-01 00:00:00", "yyyy-MM-dd HH:mm:ss") AND [date] <= DateTimeFormat("2023-01-01 23:59:59", "yyyy-MM-dd HH:mm:ss")
Could someone please help me understand how to filter for data from a specific day using the filter tool?
Thank you!