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

Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.

Reply
dfour
Regular Visitor

Dynamic row numbering for drill through table

Hello, 

So i have a database and i've applied certain filters on it to get drill through table visuals.

i need index number for each row in the table, i was trying all day but without any success

the row counts can be from 0 to 6K cols

 

This is the best i can get 

image.png

 

Current measure : 
image.png

btw when i apply the same measure to another table (having 1000+ cols) this is the result : 

image.png

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @dfour ,

 

You may try this measure.

RowNum = 
CALCULATE (
    COUNT ( 'Table'[Emp Number] ),
    FILTER (
        ALLSELECTED ( 'Table' ),
        'Table'[Emp Number] <= MAX ( 'Table'[Emp Number] )
    )
)

result1.gif

 

You can check more details from here.


Best Regards,
Stephen Tao

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

5 REPLIES 5
Anonymous
Not applicable

Hi @dfour ,

 

You may try this measure.

RowNum = 
CALCULATE (
    COUNT ( 'Table'[Emp Number] ),
    FILTER (
        ALLSELECTED ( 'Table' ),
        'Table'[Emp Number] <= MAX ( 'Table'[Emp Number] )
    )
)

result1.gif

 

You can check more details from here.


Best Regards,
Stephen Tao

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

amitchandak
Super User
Super User

@dfour , try if index in power query can help

https://stackoverflow.com/questions/45715963/creating-an-index-column-for-power-bi

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

@amitchandak That will not work, because the table is just visual table with cols from different tables and results can be changed with filters

AllisonKennedy
Super User
Super User

Looks like it might be a matter of counting the right table[column] combination. What does your data model look like? You could also just use COUNTROWS function and then don't need calculate.

Please @mention me in your reply if you want a response.

Copying DAX from this post? Click here for a hack to quickly replace it with your own table names

Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C

I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com

@AllisonKennedy 

i tried countrows before with no success

 

image.png

The table takes filters from drill through and shows a visual table for employees with the filters applied

Helpful resources

Announcements
PBIApril_Carousel

Power BI Monthly Update - April 2025

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

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

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