Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
lukasjar
Resolver I
Resolver I

DirectQuery SQL Query UTC to Swedish time

Hello.

I have a database that has Timestamps written in UTC. Is it possible to write a SQL query so that it always converts these to Swedish time (also winter/summer time. Adding +"01:00:00" will not work as this does not take account for summer/wintertime).

 

I also have a query that just gives me the StartOfHour from the Timestamp above. Is it possible to write this with the same rules as above.

 

format(TimeTrue, 'HH') StartTimeHour

 

 

Thank you for any assistance on this!

1 ACCEPTED SOLUTION
lukasjar
Resolver I
Resolver I

https://stackoverflow.com/questions/8038744/convert-datetime-column-from-utc-to-local-time-in-select... 

Found this now when searching the web. Following code works for system time.

 

TimeTrue is my column name.

 

 

 

SELECT TOP 10
TimeTrue,
CONVERT(datetime, 
SWITCHOFFSET(CONVERT(datetimeoffset, 
TimeTrue), 
DATENAME(TzOffset, SYSDATETIMEOFFSET()))) 
AS ColumnInLocalTime

FROM PerformanceOpc (NOLOCK)
WHERE convert(varchar,TimeTrue,23)>='2021-02-22'

 

 

timetrue.JPG

View solution in original post

3 REPLIES 3
lukasjar
Resolver I
Resolver I

https://stackoverflow.com/questions/8038744/convert-datetime-column-from-utc-to-local-time-in-select... 

Found this now when searching the web. Following code works for system time.

 

TimeTrue is my column name.

 

 

 

SELECT TOP 10
TimeTrue,
CONVERT(datetime, 
SWITCHOFFSET(CONVERT(datetimeoffset, 
TimeTrue), 
DATENAME(TzOffset, SYSDATETIMEOFFSET()))) 
AS ColumnInLocalTime

FROM PerformanceOpc (NOLOCK)
WHERE convert(varchar,TimeTrue,23)>='2021-02-22'

 

 

timetrue.JPG

v-kelly-msft
Community Support
Community Support

Hi  @lukasjar ,

 

Using below M codes to realize it:

#"Added Custom" = Table.AddColumn(#"Changed Type", "Custom", each DateTimeZone.SwitchZone(DateTime.AddZone([Column1],0),1))

And you will see:

v-kelly-msft_0-1615790076823.png

For the sample .pbix file,pls see attached.

 

Best Regards,
Kelly

Did I answer your question? Mark my post as a solution!

Sorry Kelly but I can't add custom columns in direct query. I need to load the data in swedish time in the SQL query.

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.