Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
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.
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:
Please could you help with the DAX, or to suggest another method, e.g. how to create a measure for this?
Thanks,
Dan
Solved! Go to Solution.
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 )
Best Regards
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 )
Best Regards
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.