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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
StephenF
Responsive Resident
Responsive Resident

How to insert index into a column of type table for each table

I wish to have an index of 1,2,3,4 etc into row of type table. So each table in each row gets its own index

 

I think its something like this 

Table.AddIndexColumn(
[SortSubTable], "Rank", 1,1)

But how would that look exactly within advanced editor?

1 ACCEPTED SOLUTION

What matters is your previous step and All Data. Your step in AE would become

#"Added Custom" = Table.AddColumn(#"Your previous step", "Custom", each Table.AddIndexColumn([All Data], "Rank", 1,1))

 Better to insert a custom column and put following formula there which will take care of your previous step as well

= Table.AddIndexColumn([All Data], "Rank", 1,1)

View solution in original post

4 REPLIES 4
Vijay_A_Verma
Super User
Super User

Better to insert a custom column and put this formula there. This would like following in AE

#"Added Custom" = Table.AddColumn(#"Your previous step", "Custom", each Table.AddIndexColumn([SortSubTable], "Rank", 1,1))

What refers to the column of type Table in your example? In my data I call my tables "CatChanges" and the Table column within it is called "All Data".

What matters is your previous step and All Data. Your step in AE would become

#"Added Custom" = Table.AddColumn(#"Your previous step", "Custom", each Table.AddIndexColumn([All Data], "Rank", 1,1))

 Better to insert a custom column and put following formula there which will take care of your previous step as well

= Table.AddIndexColumn([All Data], "Rank", 1,1)

You need to put the column to be ranked on in the first column bizzarely also or it wont sort in the correct order.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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