cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
henkka
Helper II
Helper II

How to calculate chained worklleaves duration only once

Hi,
I have a calculated column which calcutes the total duration for the chained workleaves. Now I have a problem for example there is three one day work leaves that are continuing the previous one but how can I calculate the total duration so that only the firs workleave gets a total duration and the followign are null or zero.
 
ChainedWorkLeavesDuration =
VAR CurrentWorkLeaveId = FactWorkleaves[Workleave.id]
VAR ChainedWorkLeaves =
FILTER 
FactWorkleaves PATHCONTAINS FactWorkleaves[path] CurrentWorkLeaveId )
           )
RETURN  
SUMX ChainedWorkLeaves FactWorkleaves[Duration] )
 
Now the table calculates like this
 
Workleave.idPreviouschainedworkleave.idpathDurationTotal duration
111 11111
222111111 | 22212
333222111|222|33313
444 44411
555 55511

 

but the correct end result would be

Workleave.idPreviouschainedworkleave.idpathDurationTotal duration
111 11113
222111111 | 22210
333222111|222|33310
444 44411
555 55511
1 ACCEPTED SOLUTION
barritown
Super User
Super User

Hi @henkka,

I'd propose to solve you problem with a calculation column like this:

barritown_0-1684148000446.png

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

My YouTube vlog in English

My YouTube vlog in Russian

 

View solution in original post

1 REPLY 1
barritown
Super User
Super User

Hi @henkka,

I'd propose to solve you problem with a calculation column like this:

barritown_0-1684148000446.png

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

My YouTube vlog in English

My YouTube vlog in Russian

 

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Dashboard in a day with date

Exclusive opportunity for Women!

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!

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors