Forum Discussion
SharePoint date differs from Power BI date
I tried the date time locale alternative, which almost fooled me to think it was working, but as soon as I published the report online it reverted (I reckoned it used another source for the date time locale setting after being published).
We've had the bizarre situation where we have had a mix of correct dates and dates out by one hour within the same column on a List on SharePoint Online. Fortunately we also had the dates elsewhere so I could check them. I used this formula to correct them:
each if DateTime.Time([Lease date]) = #time(0,0,0) then [Lease date] else Date.AddDays ([Lease date], 1)
So if the Lease date is correct (ie with a time of 00:00:00), then it uses it otherwise it adds a day.
I've seen this behaviour on two seperate SharePoint lists in the last few weeks.