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.
if the particular record downtime (completion time - accept time)e is more than 1 hour, then need to populate multiple records for each hour, else the same record. see the below
source
result
Solved! Go to Solution.
let
Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
fx=(dt,et)=>List.Min({Time.EndOfHour(dt)-#duration(0,0,0,1),et}),
DT=(ct,at)=>Duration.TotalHours(ct-at),
Custom1 = Table.FromRecords(
List.TransformMany(
Table.ToRecords(Source),
each List.Generate(
()=>_&[
CompleteTime=fx([AcceptTime],[CompleteTime]),
DownTime=DT(CompleteTime,[AcceptTime])
],
each [AcceptTime]<=[CompleteTime],
(x)=>x&[
AcceptTime=Time.StartOfHour(x[CompleteTime]+#duration(0,1,0,0)),
CompleteTime=fx(AcceptTime,[CompleteTime]),
DownTime=DT(CompleteTime,AcceptTime)]
),
(x,y)=>y
)
)
in
Custom1
Hi @hanuraolm ,
Please go to "Advanced Editor" dialog, and paste the @wdx223_Daniel 's M syntax in it.
In your case, you may need to make some changes as shown below:
Best Regards,
Eyelyn Qin
Hi @hanuraolm ,
Please go to "Advanced Editor" dialog, and paste the @wdx223_Daniel 's M syntax in it.
In your case, you may need to make some changes as shown below:
Best Regards,
Eyelyn Qin
let
Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
fx=(dt,et)=>List.Min({Time.EndOfHour(dt)-#duration(0,0,0,1),et}),
DT=(ct,at)=>Duration.TotalHours(ct-at),
Custom1 = Table.FromRecords(
List.TransformMany(
Table.ToRecords(Source),
each List.Generate(
()=>_&[
CompleteTime=fx([AcceptTime],[CompleteTime]),
DownTime=DT(CompleteTime,[AcceptTime])
],
each [AcceptTime]<=[CompleteTime],
(x)=>x&[
AcceptTime=Time.StartOfHour(x[CompleteTime]+#duration(0,1,0,0)),
CompleteTime=fx(AcceptTime,[CompleteTime]),
DownTime=DT(CompleteTime,AcceptTime)]
),
(x,y)=>y
)
)
in
Custom1
thanks for the details. Could you share more details about what you have imported and the final result of that. If you can share the PowerBI file that would help us to set up as per the need.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.