Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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!
Solved! Go to Solution.
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'
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'
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:
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.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 16 | |
| 16 | |
| 11 | |
| 10 | |
| 9 |