The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi,
I have a problem that powerBi gets date from SHP list in a wrong timezone.
In shp - i have 21.04.2020
But in powerBi I can see 20.04.2020 23:00
Any quick fix?
HI @jeyjey344,
It seems like UTC time conversion and daily time saving related issue, I'd like to suggest you take a look at the following blog to know about these scenarios:
Convert UTC to Local Time with Daylight Savings Support in Power BI
Regards,
Xiaoxin Sheng
If your powerBi gets wrong date from sharepoint list ( due to a diferent time zone) - you can convert that date by adding new column with this formula:
DateTimeZone.RemoveZone(
DateTimeZone.ToLocal(
DateTime.AddZone([Data zadania], 0)
)
)
Cheers
So seems like PowerBi gets UTC time. I created custom column:
[Date] + #duration(0,2,0,0) - by that I can get correct time. The problem is it is only true for half of the year...
By the end of the march we moved our time by 1 hour. Should I use "IF" that adds 1 or 2 hour in diferent part of the year? Or is there a better option?
This one seems to be incorrect:
if [Date] > "29.03.2020 23:00:00" then [Date] + #duration(0,2,0,0) else [Date] + #duration(0,1,0,0)