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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
Anonymous
Not applicable

Calculating date difference in the same column for different categories

Hi,
I have tried looking through the forums, and while there are similar queries there aren't any answers that I have been able to directly apply.  I am trying to work out the days overdue for each service (School/setting, CCP, EP) from the received date - due date.  The other date differences are less of a concern.  

ym907182_4-1675266782786.png

 

The complexity is they relate to different cases, and different services with different stages in.

I have tried a calculated column, but I am not very experienced with DAX: 

ym907182_1-1675266039923.png


Please could you help with the DAX, or to suggest another method, e.g. how to create a measure for this?

Thanks,

Dan

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous ,

Please update the formula of calculated column [DateDiff] as below to get the correct datediff, you can find the details in the attachment.

Datediff = 
VAR _DueDate =
    CALCULATE (
        MAX ( 'Prof Reports and Panel - EHCP004'[Date] ),
        FILTER (
            ALLEXCEPT (
                'Prof Reports and Panel - EHCP004',
                'Prof Reports and Panel - EHCP004'[Case Number]
            ),
            'Prof Reports and Panel - EHCP004'[Stage index] = 1
        )
    )
VAR _ReceivedDate =
    CALCULATE (
        MAX ( 'Prof Reports and Panel - EHCP004'[Date] ),
        FILTER (
            ALLEXCEPT (
                'Prof Reports and Panel - EHCP004',
                'Prof Reports and Panel - EHCP004'[Case Number]
            ),
            'Prof Reports and Panel - EHCP004'[Stage index] = 2
        )
    )
RETURN
   DATEDIFF ( _DueDate, _ReceivedDate, DAY )

yingyinr_0-1675305084762.png

Best Regards

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @Anonymous ,

Please update the formula of calculated column [DateDiff] as below to get the correct datediff, you can find the details in the attachment.

Datediff = 
VAR _DueDate =
    CALCULATE (
        MAX ( 'Prof Reports and Panel - EHCP004'[Date] ),
        FILTER (
            ALLEXCEPT (
                'Prof Reports and Panel - EHCP004',
                'Prof Reports and Panel - EHCP004'[Case Number]
            ),
            'Prof Reports and Panel - EHCP004'[Stage index] = 1
        )
    )
VAR _ReceivedDate =
    CALCULATE (
        MAX ( 'Prof Reports and Panel - EHCP004'[Date] ),
        FILTER (
            ALLEXCEPT (
                'Prof Reports and Panel - EHCP004',
                'Prof Reports and Panel - EHCP004'[Case Number]
            ),
            'Prof Reports and Panel - EHCP004'[Stage index] = 2
        )
    )
RETURN
   DATEDIFF ( _DueDate, _ReceivedDate, DAY )

yingyinr_0-1675305084762.png

Best Regards

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Kudoed Authors