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! Learn more
I have Date and Feature coming from a source and need to add a Cumulative row count until that date and for that feature
I added sample values for the cumulative count
If I only have one feature , the following formula gives the count fine
CumulativeCount = CALCULATE(COUNTROWS(Registrations), FILTER (ALL(Registrations), [ApprovedDate] <= MAX([ApprovedDate])))
How to add one more filter to count only rows of Feature value in the current row context?
Solved! Go to Solution.
ALLEXCEPT helps in doing such calculations for sub categories.
Try this
CumulativeCount =
CALCULATE (
COUNTROWS ( Registrations ),
FILTER (
ALLEXCEPT ( Registrations, Registrations[Feature] ),
[Date] <= MAX ( [Date] )
)
)
To achieve your requirement, you can add VALUES() at the end of your expression. Please refer:
CumulativeCount =
CALCULATE (
COUNTROWS ( Registrations ),
FILTER ( ALL ( Registrations ), [ApprovedDate] <= MAX ( [ApprovedDate] ) ),
VALUES ( Registrations[Feature] )
)
Thanks,
Xi Jin.
To achieve your requirement, you can add VALUES() at the end of your expression. Please refer:
CumulativeCount =
CALCULATE (
COUNTROWS ( Registrations ),
FILTER ( ALL ( Registrations ), [ApprovedDate] <= MAX ( [ApprovedDate] ) ),
VALUES ( Registrations[Feature] )
)
Thanks,
Xi Jin.
ALLEXCEPT helps in doing such calculations for sub categories.
Try this
CumulativeCount =
CALCULATE (
COUNTROWS ( Registrations ),
FILTER (
ALLEXCEPT ( Registrations, Registrations[Feature] ),
[Date] <= MAX ( [Date] )
)
)
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.