I discovered that I had to use Now() instead of Today(). Just sharing this here as I don’t see yet search results for Now() here in discourse
Today() returns a UTC date (with no time value). As [DateTime field] is of the type date-time, we convert Today() to a date-time value, setting the time as the beginning of the day in UTC. You will see 02:00 in the UI because you’re in the GMT+2 timezone. In this particular case, it might be better to use the Now() function instead.
I’m quite used to this nuance in many platforms. I think the latest changes to date pickers makes a great case for why we need now vs today.
Example:
I needed to filter my tasks based on creation date which used to work by selecting today but now, I need to choose the date range.