This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
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!
Many thanks for looking!
Solved! Go to Solution.
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
Proud to be a Datanaut!
Thanks a lot Pete, that is awesome!
Also very easy to do 🙂
Much appreciated!
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
Proud to be a Datanaut!
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 2 | |
| 2 |