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

The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!

Reply
laganlee
Helper II
Helper II

Add an index column in groups of three. 1,1,1,2,2,2,3,3,3, etc

Hi

I need an extra column that is like an index column, but groups in threes:

INDEX Column

1

1

1

2

2

2

3

3

3 etc

I need this after my Column59:

However, I don't want use the usual 'group by' solution as the table is more complicated than that and it wouldn't work!

groups.JPG

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Many thanks for looking!

 

1 ACCEPTED SOLUTION
BA_Pete
Super User
Super User

Hi @laganlee ,

 

You can use Table.Split instead of Table.Group:

 

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("pZNRkgIxCETvMt8OAw2BcBbL+19jYxwd3bXQqv0kPDrQJOfzAoYKL6dFeGPZruEIVnCQ+nI5TUI4xiFjG9AIr/iq/bsspjp8V8fMSqOwBzHrJfd6mUT60/23DjEI3DVErZNGRUA7iVWEGejo9A2RKWSlhDQlryTEkGR52CG72TjsYCeXikCMWyo7EI26/M8vpY4iHy0J5UrGoJFVkzrsrgDPIKnMNDeKcmHmxNUUwk8v712PEPJWCQSh3DdcKatVpDWqXPg8wyejVY2yAn65MAfvG+v9/5u219fwh1gfyOUH", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [period = _t, dtTrans = _t, value = _t]),

    splitTable = Table.Split(Source, 3),
    convToTable = Table.FromList(splitTable, Splitter.SplitByNothing(), null, null, ExtraValues.Error),
    addIndex = Table.AddIndexColumn(convToTable, "Index", 1, 1, Int64.Type),
    expandNestedTables = Table.ExpandTableColumn(addIndex, "Column1", {"period", "dtTrans", "value"}, {"period", "dtTrans", "value"})

in
    expandNestedTables

 

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




View solution in original post

2 REPLIES 2
laganlee
Helper II
Helper II

Thanks a lot Pete, that is awesome!  

Also very easy to do 🙂

Much appreciated!

BA_Pete
Super User
Super User

Hi @laganlee ,

 

You can use Table.Split instead of Table.Group:

 

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("pZNRkgIxCETvMt8OAw2BcBbL+19jYxwd3bXQqv0kPDrQJOfzAoYKL6dFeGPZruEIVnCQ+nI5TUI4xiFjG9AIr/iq/bsspjp8V8fMSqOwBzHrJfd6mUT60/23DjEI3DVErZNGRUA7iVWEGejo9A2RKWSlhDQlryTEkGR52CG72TjsYCeXikCMWyo7EI26/M8vpY4iHy0J5UrGoJFVkzrsrgDPIKnMNDeKcmHmxNUUwk8v712PEPJWCQSh3DdcKatVpDWqXPg8wyejVY2yAn65MAfvG+v9/5u219fwh1gfyOUH", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [period = _t, dtTrans = _t, value = _t]),

    splitTable = Table.Split(Source, 3),
    convToTable = Table.FromList(splitTable, Splitter.SplitByNothing(), null, null, ExtraValues.Error),
    addIndex = Table.AddIndexColumn(convToTable, "Index", 1, 1, Int64.Type),
    expandNestedTables = Table.ExpandTableColumn(addIndex, "Column1", {"period", "dtTrans", "value"}, {"period", "dtTrans", "value"})

in
    expandNestedTables

 

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! It's time to submit your entry.

January Power BI Update Carousel

Power BI Monthly Update - January 2026

Check out the January 2026 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.