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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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
_datediffCount 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
_datediffCount 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
)
)
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 19 | |
| 11 | |
| 9 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 35 | |
| 32 | |
| 20 | |
| 12 | |
| 10 |