Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello,
I have a 'case open date' filter applied to my sheet
I am wondering if it is possible to create a measure that counts all cases opened prior to the filtered dates?
Thanks,
Hi @Tcounihan
You could use ALLEXCEPT or ALL function in your measures. For example, the following measure will count id on all case open dates and ignore the 'case open date' filter.
measure_count = CALCULATE ( COUNT ( 'table'[id] ), ALL ( 'table'[case open date] ) )
However, if you replace ALL with ALLEXCEPT, it will count id on filtered case open dates and ignore filters on other potential columns.
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
Yes it is.
| Have I solved your problem? Please click Accept as Solution so I don't keep coming back to this post, oh yeah, others may find it useful also ;). |
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!