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

July 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more

Reply
ahmer_malick
Helper II
Helper II

Help with Powerbi Formula

I am unable to convert this formula in Powerbi

IF(AZ3<>"",COUNTIF($AZ$2:AZ3,AZ3),"")

 

If the same work center comes each time , its keep on add 1 as a count till the last one is counted

ahmer_malick_0-1752251736879.png

ahmer_malick_1-1752251973454.png

 

 

2 ACCEPTED SOLUTIONS
Chanty4u
Frequent Visitor

Try this 

 

WorkCenter Running Count =

IF (

    NOT ISBLANK('Table'[WorkCenter]),

    CALCULATE(

        COUNTROWS('Table'),

        FILTER(

            'Table',

            'Table'[WorkCenter] = EARLIER('Table'[WorkCenter]) &&

            'Table'[Index] <= EARLIER('Table'[Index])

       

)

    )

)

View solution in original post

I tried this one previously but didnt work 

View solution in original post

2 REPLIES 2
Chanty4u
Frequent Visitor

Try this 

 

WorkCenter Running Count =

IF (

    NOT ISBLANK('Table'[WorkCenter]),

    CALCULATE(

        COUNTROWS('Table'),

        FILTER(

            'Table',

            'Table'[WorkCenter] = EARLIER('Table'[WorkCenter]) &&

            'Table'[Index] <= EARLIER('Table'[Index])

       

)

    )

)

I tried this one previously but didnt work 

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

July Power BI Update Carousel

Power BI Monthly Update - July 2026

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

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.