Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
Workleave.id | Previouschainedworkleave.id | path | Duration | Total duration |
111 | 111 | 1 | 1 | |
222 | 111 | 111 | 222 | 1 | 2 |
333 | 222 | 111|222|333 | 1 | 3 |
444 | 444 | 1 | 1 | |
555 | 555 | 1 | 1 |
but the correct end result would be
Workleave.id | Previouschainedworkleave.id | path | Duration | Total duration |
111 | 111 | 1 | 3 | |
222 | 111 | 111 | 222 | 1 | 0 |
333 | 222 | 111|222|333 | 1 | 0 |
444 | 444 | 1 | 1 | |
555 | 555 | 1 | 1 |
Solved! Go to Solution.
Hi @henkka,
I'd propose to solve you problem with a calculation column like this:
And in the text format for convenience:
Total duration =
VAR CurrentWorkLeaveID = [Workleave.id]
RETURN SUMX (
FILTER (
ADDCOLUMNS ( ALL ( FactWorkleaves ),
"Flag",
FIND ( CurrentWorkLeaveID, [path], 1, BLANK () ) = 1 ),
[Flag] = TRUE () ),
[Duration] ) + 0
Best Regards,
Alexander
Hi @henkka,
I'd propose to solve you problem with a calculation column like this:
And in the text format for convenience:
Total duration =
VAR CurrentWorkLeaveID = [Workleave.id]
RETURN SUMX (
FILTER (
ADDCOLUMNS ( ALL ( FactWorkleaves ),
"Flag",
FIND ( CurrentWorkLeaveID, [path], 1, BLANK () ) = 1 ),
[Flag] = TRUE () ),
[Duration] ) + 0
Best Regards,
Alexander
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.
Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!