Hi,
I'm implementing an AF with some volumes.
I query two columns:
In the first column there is a date rounded by day, and the second column is the count.
I noticed that the ROUND_DAY function applied to the first column is not working fine, since it keeps the timestamp, putting everything to 0 (2022-03-27T00:00:000Z). The problem is that at the 27 of march I have two dates that are the same, one with all 0 in timestamp, the other with 23 at the beginning. This is because at the 27 of march the time is changed by one hour, and it just mess everyting up the in AF.
In the dashboard everything is working fine, since the ROUND_DAY function allow me to display only the date without timestamp (2022-03-27).
How can I fix this in the AF?
already tried:
YEAR(date) || '-' || MONTH(date) || '-' || DAY(date), same as before
formatDate function in AF: it says that the date is not a valid date.
Thanks