cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
Dom87326
Helper II
Helper II

Index column based on other column

Hello, 

 

I'd like to add an index column to the table below. It should take into account 'Attributes' columns and needs to be incremented by  +1 when a new value i.e. Question appreas. 

Dom87326_0-1651574698234.png

 

 I hope that someone can help here. Thank you. 

 

1 ACCEPTED SOLUTION
Vijay_A_Verma
Super User
Super User

Group on Attribute column - Insert the required Index - Ungroup

See the working here for 2 columns table - Open a blank query - Home - Advanced Editor - Remove everything from there and paste the below code to test (later on when you use the query on your dataset, you will have to change the source appropriately. If you have columns other than these, then delete Changed type step and do a Changed type for complete table from UI again)

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WclTSUTJUitWBsIzgLGM4ywTMcgKyTOEsMzjLEM6C6HWG63CGy7rAZV3hJrvCZd0QrJg8KCcWAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Attribute = _t, Answer = _t]),
    #"Grouped Rows" = Table.Group(Source, {"Attribute"}, {{"Temp", each _, type table [Attribute=nullable text, Answer=nullable text]}}),
    #"Added Index" = Table.AddIndexColumn(#"Grouped Rows", "Index", 1, 1, Int64.Type),
    #"Expanded Temp" = Table.ExpandTableColumn(#"Added Index", "Temp", {"Answer"}, {"Answer"})
in
    #"Expanded Temp"

 

View solution in original post

1 REPLY 1
Vijay_A_Verma
Super User
Super User

Group on Attribute column - Insert the required Index - Ungroup

See the working here for 2 columns table - Open a blank query - Home - Advanced Editor - Remove everything from there and paste the below code to test (later on when you use the query on your dataset, you will have to change the source appropriately. If you have columns other than these, then delete Changed type step and do a Changed type for complete table from UI again)

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WclTSUTJUitWBsIzgLGM4ywTMcgKyTOEsMzjLEM6C6HWG63CGy7rAZV3hJrvCZd0QrJg8KCcWAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Attribute = _t, Answer = _t]),
    #"Grouped Rows" = Table.Group(Source, {"Attribute"}, {{"Temp", each _, type table [Attribute=nullable text, Answer=nullable text]}}),
    #"Added Index" = Table.AddIndexColumn(#"Grouped Rows", "Index", 1, 1, Int64.Type),
    #"Expanded Temp" = Table.ExpandTableColumn(#"Added Index", "Temp", {"Answer"}, {"Answer"})
in
    #"Expanded Temp"

 

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors