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

Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.

Reply
freidav1984
Frequent Visitor

DAX measure which returns an index (counter) in a table depending on the displayed table items

Hi All!

 

I have a challenge, I would like to display a counter value in table visual, which should return an increasing number (increment +1) depending on the displayed and filtered items shown in the table visual.

 

I have a calculated table, which contains invoices' data.

 

IDPartnerCategory - MainCategory - Sub
AX1AAA
AV6BAB
ZT1CAC
DS2DBA
AS7DBB

 

If I put all data fields from the above shown table into a table visualization, I would like to add a measure which returns an index or counter value based on how the table is filtered. What I want to achieve.

 

Example 1.:

If I filter the table for category - main = 'A' then I would need the following result in the table visualization

IDPartnerCategory - MainCategory - SubMEASURE - Index
AX1AAA1
AV6BAB2
ZT1CAC3

 

Example 2.:

If I filter the table for category - main = 'B' then I would need the following result in the table visualization

 

IDPartnerCategory - MainCategory - SubMEASURE - Index
DS2DBA1
AS7DBB2

 

Do you have any solution on this issue?

Thanks a lot!

 

David

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @freidav1984 ,

 

I suggest you to try this code to create a measure.

Dynamic Index = 
VAR _1 =
    ADDCOLUMNS (
        ALLSELECTED ( 'Table' ),
        "Merage", COMBINEVALUES ( " ", [Category - Main], [Category - Sub] )
    )
VAR _2 =
    ADDCOLUMNS ( _1, "Index", RANKX ( _1, [Merage],, ASC, DENSE ) )
RETURN
    SUMX ( FILTER ( _2, [ID] = MAX ( 'Table'[ID] ) ), [Index] )

Result is as below.

vrzhoumsft_0-1686293446030.png

vrzhoumsft_1-1686293457125.png

 

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @freidav1984 ,

 

I suggest you to try this code to create a measure.

Dynamic Index = 
VAR _1 =
    ADDCOLUMNS (
        ALLSELECTED ( 'Table' ),
        "Merage", COMBINEVALUES ( " ", [Category - Main], [Category - Sub] )
    )
VAR _2 =
    ADDCOLUMNS ( _1, "Index", RANKX ( _1, [Merage],, ASC, DENSE ) )
RETURN
    SUMX ( FILTER ( _2, [ID] = MAX ( 'Table'[ID] ) ), [Index] )

Result is as below.

vrzhoumsft_0-1686293446030.png

vrzhoumsft_1-1686293457125.png

 

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.