Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
I have two columns (StartTime and EndTime) where I want to create a new custom column where I subtract only first value of StartTime from each value in EndTime. Data time of both columns is Time. Suggestions appreciated.
Solved! Go to Solution.
Hi @davidz106 ,
You can get it in Power Query Editor, please find the details in the attachment.
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("NYzJEQAhCARz4e0DEK9JxTL/NBZhfXZP1+xNCm5UqEOUTtlUIeY8oBxs4GR7bLef4Brcb1hovX6AV3DLvwmdzsLgGWJB5AqB5oNPar8ZaWJzo7BO53w=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [StartTime = _t, EndTime = _t]),
#"Changed Type" = Table.TransformColumnTypes(Source,{{"StartTime", type time}, {"EndTime", type time}}),
#"Added Custom" = Table.AddColumn(#"Changed Type", "Custom", each [EndTime]-#"Changed Type"[StartTime]{0}),
#"Changed Type1" = Table.TransformColumnTypes(#"Added Custom",{{"Custom", type duration}})
in
#"Changed Type1"
Best Regards
Hi @davidz106 ,
You can get it in Power Query Editor, please find the details in the attachment.
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("NYzJEQAhCARz4e0DEK9JxTL/NBZhfXZP1+xNCm5UqEOUTtlUIeY8oBxs4GR7bLef4Brcb1hovX6AV3DLvwmdzsLgGWJB5AqB5oNPar8ZaWJzo7BO53w=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [StartTime = _t, EndTime = _t]),
#"Changed Type" = Table.TransformColumnTypes(Source,{{"StartTime", type time}, {"EndTime", type time}}),
#"Added Custom" = Table.AddColumn(#"Changed Type", "Custom", each [EndTime]-#"Changed Type"[StartTime]{0}),
#"Changed Type1" = Table.TransformColumnTypes(#"Added Custom",{{"Custom", type duration}})
in
#"Changed Type1"
Best Regards
@davidz106 , Min and Max based on what
overall
a new column
datediff(Min(Table[StartTime]), Max(Table[EndTime]) , second)
or based on id
datediff(MinX(filter(Table, [ID] = earlier([ID]) ), Table[StartTime]), Max(filter(Table, [ID] = earlier([ID]) ), Table[EndTime]) , second)
Earlier, I should have known Earlier: https://youtu.be/CVW6YwvHHi8
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
119 | |
82 | |
47 | |
42 | |
34 |
User | Count |
---|---|
190 | |
79 | |
72 | |
49 | |
46 |