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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I've a data model like the screenshot
here're the relationships between tables
I try to calculate count application by next_processing_date
But it returns always nothing
I analyze data it seems the issue related to the expresion of measure, how to correct it
Solved! Go to Solution.
Hi @Anonymous ,
I think in your formula, the [created_date] column filter is also applied, resulting in a blank result. Please try using the following formula.
Anta =
CALCULATE (
SUM ( proposals[CountApplication] ),
USERELATIONSHIP ( proposals[next_processing_date], DimDate[Date] ),
FILTER ( DimDate, DimDate[Date] >= [StartDate] && DimDate[Date] <= [endDate] )
)
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
I think in your formula, the [created_date] column filter is also applied, resulting in a blank result. Please try using the following formula.
Anta =
CALCULATE (
SUM ( proposals[CountApplication] ),
USERELATIONSHIP ( proposals[next_processing_date], DimDate[Date] ),
FILTER ( DimDate, DimDate[Date] >= [StartDate] && DimDate[Date] <= [endDate] )
)
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Your screen shot hides Report Measures'[StartDate] and Report Measures[endDate].
Are they field or measure. Do they all have a date data type?
Try debug dmall section of your measure one at a time ... for example .... 😁😁😁
Debug 1=
calculate(
sum(proposals[CountApplication]) ,
USERELATIONSHIP( proposals[next_processing_date] , DimDate[Date] )
)
Debug 2=
COUNTROW(
FILTER(proposals,
proposals[next_processing_date] >= 'Report Measures'[StartDate] &&
proposals[next_processing_date] <= 'Report Measures'[endDate])
)
Both expressions return values,
when I switch active/inactive relationship betrween proposal and date, it returns correctly results
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 101 | |
| 76 | |
| 56 | |
| 51 | |
| 46 |