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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss 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.

60 days of Data Days Carousel

Data Days 2026

Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

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.

Top Solution Authors