Forum Discussion
Anonymous
8 years agoNot applicable
Date Field Time Zone Fix
I have a date/time field that is pulling from an API that is not in my time zone. Is there a way I can convert the timezone to show CST?
- 8 years ago
Hi ThePowerBIQueen ,
To see you local timezone, use power query function:
DateTimeZone.LocalNow()
Or DAX function:
LocalTime = now()
To change timezone, use power query function:
= DateTimeZone.SwitchZone(dateTimeZone, timezoneHours , timezoneMinutes )
In addtion, please refer to:
http://radacad.com/solving-dax-time-zone-issue-in-power-bi
https://msdn.microsoft.com/en-us/query-bi/m/datetimezone-functions
Regards,
Jimmy Tao
Anonymous
4 years agoNot applicable
Hello,
Sorry for open an old post but I have the following problem: I'm importing tables through SQL SERVER and the date/time fields are in a different time zone. I have the code to convert via SQL (to_char(cast ...) but sometimes I import the whole table instead of writing a query.
How to convert date/time fields to my time zone without add a new column?
Thank you!