Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register 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 )