Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
HI,
I have one table containing rules for conversion of local date/time to UTC time zone format. What I want to do is to convert local times in second table (from known time zone) into UTC time zone format, using rules of first table. Please advice how to do this in PQ? I tried creating List of all dates/times (yyyy/mm/dd hh:mm:ss AM/PM format) within ranges (rules table), and then do the merge, but such method takes too long. Thanks
Solved! Go to Solution.
Hi @tomislav ,
We can achieve that by DAX.
Column =
VAR a =
- CALCULATE (
MAX ( RULES[OffsetFromUTC_ForLocalTime] ),
FILTER (
RULES,
RULES[EndOfTimeZoneOffset] >= 'TABLE TO CONVERT'[CreatedDate]
&& RULES[StartOfTimeZoneOffset] <= 'TABLE TO CONVERT'[CreatedDate]
)
)
RETURN
'TABLE TO CONVERT'[CreatedDate] + TIME ( a, 0, 0 )
Hi @tomislav ,
We can achieve that by DAX.
Column =
VAR a =
- CALCULATE (
MAX ( RULES[OffsetFromUTC_ForLocalTime] ),
FILTER (
RULES,
RULES[EndOfTimeZoneOffset] >= 'TABLE TO CONVERT'[CreatedDate]
&& RULES[StartOfTimeZoneOffset] <= 'TABLE TO CONVERT'[CreatedDate]
)
)
RETURN
'TABLE TO CONVERT'[CreatedDate] + TIME ( a, 0, 0 )
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 8 | |
| 7 | |
| 7 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 19 | |
| 14 | |
| 12 | |
| 12 | |
| 9 |