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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

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
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors