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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
n2p2gupta
Frequent Visitor

Calculate cumulative count by looking values in a column

How can I create a column "Result" below by keepin a count of repeating values from Col1?  Thanks.

Col 1    Result

   a              1

   b              1

   a              2

   c              1

   b             2

   a             3

   c             2

3 REPLIES 3
n2p2gupta
Frequent Visitor

Thanks Eric!


@n2p2gupta wrote:

Thanks Eric!


@n2p2gupta

If you have no further question, could you accept the reply as solution to close this thread? For any question, feel free to post.

Eric_Zhang
Employee
Employee


@n2p2gupta wrote:

How can I create a column "Result" below by keepin a count of repeating values from Col1?  Thanks.

Col 1    Result

   a              1

   b              1

   a              2

   c              1

   b             2

   a             3

   c             2


@n2p2gupta

You need an index column to indicate the rows order.

Capture.PNG

 

Then create a calculated column as

Result =
RANKX (
    FILTER ( 'Table', 'Table'[Column1] = EARLIER ( 'Table'[Column1] ) ),
    'Table'[Index],
    ,
    ASC,
    DENSE
)

Capture2.PNG

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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