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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

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
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

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