Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
zombieug
Helper I
Helper I

Calculate Column based on different Values

 

Hi forum Smiley Happy

 

I would appreciate your help on the following matter:

down below you can see an example table. I would like to calculate the column Lifecycle based on:

partnumber & the date difference between the applied action install.

 

2018-01-26_12h18_11.png

 

 

I hope the example table explains better what I am trying to do (calculate lifecycle in days --> for each partnumber if install dates are available - lifecycle intervall is last install date subtracted by the the install date before).

 

I am kind of new to Power BI and DAX so I would really appreciate it if somebody could help me on that matter.

 

If the example I am showing is not doable in Power BI or you need any further information please let me know.Smiley Very Happy

 

1 ACCEPTED SOLUTION
Zubair_Muhammad
Community Champion
Community Champion

@zombieug

 

Try this Calculated Column

 

LifeCycle =
VAR CurrentDate = TableName[Date]
VAR PreviousDate =
    CALCULATE (
        MAX ( TableName[Date] ),
        FILTER (
            ALLEXCEPT ( TableName, TableName[PartNumber] ),
            TableName[Action] = "Install"
                && TableName[Date] < CurrentDate
        )
    )
RETURN
    IF (
        NOT ( ISBLANK ( PreviousDate ) )
            && TableName[Action] = "Install",
        DATEDIFF ( PreviousDate, CurrentDate, DAY )
    )

Regards
Zubair

Please try my custom visuals

View solution in original post

2 REPLIES 2
Zubair_Muhammad
Community Champion
Community Champion

@zombieug

 

Try this Calculated Column

 

LifeCycle =
VAR CurrentDate = TableName[Date]
VAR PreviousDate =
    CALCULATE (
        MAX ( TableName[Date] ),
        FILTER (
            ALLEXCEPT ( TableName, TableName[PartNumber] ),
            TableName[Action] = "Install"
                && TableName[Date] < CurrentDate
        )
    )
RETURN
    IF (
        NOT ( ISBLANK ( PreviousDate ) )
            && TableName[Action] = "Install",
        DATEDIFF ( PreviousDate, CurrentDate, DAY )
    )

Regards
Zubair

Please try my custom visuals

@Zubair_Muhammad

 

Amazing. Thanks for helping out that fast.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.