Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
rajanikanthr
Frequent Visitor

Cumulative count until that row date and for the row field value

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?

2 ACCEPTED SOLUTIONS
Zubair_Muhammad
Community Champion
Community Champion

@rajanikanthr

 

ALLEXCEPT helps in doing such calculations for sub categories.

Try this

 

CumulativeCount =
CALCULATE (
    COUNTROWS ( Registrations ),
    FILTER (
        ALLEXCEPT ( Registrations, Registrations[Feature] ),
        [Date] <= MAX ( [Date] )
    )
)

View solution in original post

v-xjiin-msft
Solution Sage
Solution Sage

@rajanikanthr

 

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] )
)

111.PNG

 

Thanks,
Xi Jin.

View solution in original post

3 REPLIES 3
v-xjiin-msft
Solution Sage
Solution Sage

@rajanikanthr

 

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] )
)

111.PNG

 

Thanks,
Xi Jin.

Thanks @Zubair_Muhammad and @v-xjiin-msft ..both solutions worked fine..

Zubair_Muhammad
Community Champion
Community Champion

@rajanikanthr

 

ALLEXCEPT helps in doing such calculations for sub categories.

Try this

 

CumulativeCount =
CALCULATE (
    COUNTROWS ( Registrations ),
    FILTER (
        ALLEXCEPT ( Registrations, Registrations[Feature] ),
        [Date] <= MAX ( [Date] )
    )
)

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors