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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
AshleyJ17
Frequent Visitor

How to progressively count values in a column

Hi All

 

After some help with the sample data i have below, i have a column called Reference and want to add a new column which counts how many occurences cumulatively within the data, for example '1472321-2860846' shows up 3 times in the reference column so what i would like is for Power Bi to show that it occurs 3 times but show the 1st instance, 2nd Instance and 3rd Instance if that makes sense, have done a bit of googling and searching this forum but so far havent found a solution 

 

Hoping this communintiy can help

 

Thanks in advanced


Ash


AshleyJ17_0-1683804172745.png

 

1 ACCEPTED SOLUTION
FreemanZ
Super User
Super User

hi @AshleyJ17 

try to

1) add an index column and make it like:

FreemanZ_2-1683810829256.png

https://learn.microsoft.com/en-us/power-query/add-index-column

2) add a calculated column like:

CumCount = 
COUNTROWS(
    FILTER(
        data,
        data[Reference]=EARLIER(data[Reference])
            &&data[Index]<=EARLIER(data[Index])
    )
)

it worked like:

FreemanZ_1-1683810810613.png

View solution in original post

2 REPLIES 2
FreemanZ
Super User
Super User

hi @AshleyJ17 

try to

1) add an index column and make it like:

FreemanZ_2-1683810829256.png

https://learn.microsoft.com/en-us/power-query/add-index-column

2) add a calculated column like:

CumCount = 
COUNTROWS(
    FILTER(
        data,
        data[Reference]=EARLIER(data[Reference])
            &&data[Index]<=EARLIER(data[Index])
    )
)

it worked like:

FreemanZ_1-1683810810613.png

That worked like a charm thank you FreemanZ 🙂

If you have the time would you be able to explain how this works, im not too familiar with the EARLIER function and would like to get some more understanding on the functions in the formula

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors