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.
Please help,
I have created a "Churned" measure that is supposed to count the Running total of churned customers by days:
Thanks!
The .pbix file
https://1drv.ms/u/s!AoP_9ampPIT7yHYIkCSTho7lE-9Q?e=eQvqi0
Solved! Go to Solution.
Hi @Anonymous ,
We can try to use the following measure to meet your reqirement:
Churned =
IF (
COUNTROWS ( 'Days' ) = 0,
BLANK (),
CALCULATE (
COUNTROWS ( MyData ),
FILTER ( ALLSELECTED ( Days ), Days[Day] <= MAX ( Days[Day] ) ),
NOT ( ISBLANK ( 'MyData'[Days To Churn] ) )
)
)
If it doesn't meet your requirement, Please show the exact expected result based on the Tables that you have shared.
Best regards,
Hi @Anonymous ,
We can try to use the following measure to meet your reqirement:
Churned =
IF (
COUNTROWS ( 'Days' ) = 0,
BLANK (),
CALCULATE (
COUNTROWS ( MyData ),
FILTER ( ALLSELECTED ( Days ), Days[Day] <= MAX ( Days[Day] ) ),
NOT ( ISBLANK ( 'MyData'[Days To Churn] ) )
)
)
If it doesn't meet your requirement, Please show the exact expected result based on the Tables that you have shared.
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 October 2025 Power BI update to learn about new features.