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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Created a report in Desktop. The date column being brought in is in UTC +0. Using that as a base column the following additional columns are created:
= Table.AddColumn(#"Renamed Columns1", "Created Date UTC", each DateTime.AddZone([Created Date],0))
= Table.AddColumn(#"Reordered Columns", "Created Date UTC - 7", each DateTimeZone.SwitchZone([#"Created Date UTC"], -7))
Change Types Applied:
= Table.TransformColumnTypes(#"Reordered Columns1",{{"Created Date UTC", type datetimezone}, {"Created Date UTC - 7", type datetimezone}})
= Table.TransformColumnTypes(#"Changed Type",{{"Created Date UTC - 7", type date}})
Publish Report, and the following occurs:
L/H Side is Desktop. R/H side is report published to Service.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.