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.
Hey, I have a measure that takes the created date of a case and finds the difference to todays date.
Solved! Go to Solution.
Hi @Anonymous ,
According to your description, it seems it involves two tables: 'Cases' and 'Partner' and you want to get the count of partners who have the cases with datediff(from case created date to today) is 90~180 days. Am I right? If yes,you can follow the steps below to get it. Please find the details in the attachment.
1. Create two measures as below
MaxDateDiff =
VAR _selpartner =
SELECTEDVALUE ( 'Cases'[Partner ID] )
VAR _maxdate =
CALCULATE (
MAX ( 'Cases'[CreateDate2] ),
FILTER ( ALLSELECTED ( 'Cases' ), 'Cases'[Partner ID] = _selpartner )
)
VAR _datediff =
DATEDIFF ( _maxdate, TODAY (), DAY )
RETURN
_datediff
Count of partner =
CALCULATE (
DISTINCTCOUNT ( 'Cases'[Partner ID] ),
FILTER ( 'Cases', [MaxDateDiff] >= 90 && [MaxDateDiff] <= 180 )
)
2. Create a card visual
Best Regards
Hi @Anonymous ,
According to your description, it seems it involves two tables: 'Cases' and 'Partner' and you want to get the count of partners who have the cases with datediff(from case created date to today) is 90~180 days. Am I right? If yes,you can follow the steps below to get it. Please find the details in the attachment.
1. Create two measures as below
MaxDateDiff =
VAR _selpartner =
SELECTEDVALUE ( 'Cases'[Partner ID] )
VAR _maxdate =
CALCULATE (
MAX ( 'Cases'[CreateDate2] ),
FILTER ( ALLSELECTED ( 'Cases' ), 'Cases'[Partner ID] = _selpartner )
)
VAR _datediff =
DATEDIFF ( _maxdate, TODAY (), DAY )
RETURN
_datediff
Count of partner =
CALCULATE (
DISTINCTCOUNT ( 'Cases'[Partner ID] ),
FILTER ( 'Cases', [MaxDateDiff] >= 90 && [MaxDateDiff] <= 180 )
)
2. Create a card visual
Best Regards
it seems the Card visual is unexpectedly filtered by other contexts, try to plot with a new measure with the code below:
CardMeasure=
CALCULATE
SUM(TableName[Amount]),
FILTER(
ALL(TableName),
[MaxDateDiff]>=90
&& [MaxDateDiff]<=180
)
)
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.