Forum Discussion
jeyjey344
6 years agoHelper I
Power Bi gets wrong date from SHP list
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?
Anonymous
6 years agoNot applicable
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
- jeyjey3446 years agoHelper I
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