Hi Eric, changing the Locale did not work as well.
I created a ticket for this issue.
Just for sharing, the workaround for this is to use the [Created] date as today's date.
Today() function is still returning the wrong date, timezone wise.
Example, if my validation formula is = [myDateColumn] <= Today()
The workaround is to have = [myDateColumn] <= [Created]
However this workaround works if you want your validation to work only during creation of a new list item. Might not work for all scenarios.
Hi GTMSW ADM,
I realize you marked the question as answered and logged a ticket for the issue. Did you get a resolution on the ticket?
I also had this issue and did the following to get around it. I added a calculated column named Now formatted as date and time to see what SharePoint Online thinks the current date and time was. A simple =Now() calculation returned 01/06/2020 00:15 while
the actual date and time was 01/06/2020 09:15.
I then just offset the date and time by 9 hours using the following calculation =NOW()+(1/24/60*540) and saved the calculated column as date only.