Forum Discussion
Anonymous
5 years agoNot applicable
Add column with list.generate
i want to add an index column (b) which is increased by another column (a) while value is changed. Like This A B 0 1 1 2 0 3 0 3 1 4 0 5 ...
- 5 years ago
Hello Anonymous
I would suggest you to do this with List.Accumulate. After you created the list that represents your index-column you have to integrate it your current table with Table.ToColumns and Table.FromColumns. Check out this example.
Give it a try and if you have performance issue we can check if we can enhance it a little bit
let Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMlCK1YlWMgSTBkgkXCQWAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [A = _t]), #"Changed Type" = Table.TransformColumnTypes(Source,{{"A", Int64.Type}}), CreateNewIndexColumn = List.RemoveFirstN ( List.Accumulate ( #"Changed Type"[A], {1}, (state,current)=> state & {List.Last(state) + current} ) ) , AddIndexColumnToTable = Table.FromColumns ( Table.ToColumns(#"Changed Type" ) & {CreateNewIndexColumn}, Table.ColumnNames(#"Changed Type") & {"Index"} ) in AddIndexColumnToTableCopy paste this code to the advanced editor in a new blank query to see how the solution works.
If this post helps or solves your problem, please mark it as solution (to help other users find useful content and to acknowledge the work of users that helped you)
Kudoes are nice too
Have fun
Jimmy - Anonymous5 years ago
ten millions rows worked in less than1'
let Source = List.Transform(List.Random(10000000), each Number.Round(_)), #"Converted to Table" = Table.FromList(Source, Splitter.SplitByNothing(), null, null, ExtraValues.Error), #"Grouped Rows" = Table.Group(#"Converted to Table", {"Column1"}, {{"Count", each Table.RowCount(_), Int64.Type}},GroupKind.Local), #"Added Index" = Table.AddIndexColumn(#"Grouped Rows", "Index", 1, 1, Int64.Type), #"Added Custom" = Table.AddColumn(#"Added Index", "idx", each List.Repeat({[Index]},[Count])), #"Expanded idx" = Table.ExpandListColumn(#"Added Custom", "idx") in #"Expanded idx"
Anonymous
5 years agoNot applicable
2MrowsX20cols in 1'30"
let
Source = List.Transform(List.Random(2000000), each Number.Round(_)),
#"Converted to Table" = Table.FromList(Source, Splitter.SplitByNothing(), null, null, ExtraValues.Error),
#"Muplicated Column" = Table.FromColumns(List.Repeat({#"Converted to Table"[Column1]}, 20)),
#"Grouped Rows" = Table.Group(#"Muplicated Column", {"Column1"}, {{"all",each _}},GroupKind.Local),
#"Added Index" = Table.AddIndexColumn(#"Grouped Rows", "Index", 1, 1, Int64.Type),
#"Expanded all" = Table.ExpandTableColumn(#"Added Index", "all", {"Column2", "Column3", "Column4", "Column5", "Column6", "Column7", "Column8", "Column9", "Column10", "Column11", "Column12", "Column13", "Column14", "Column15", "Column16", "Column17", "Column18", "Column19", "Column20"}, {"all.Column2", "all.Column3", "all.Column4", "all.Column5", "all.Column6", "all.Column7", "all.Column8", "all.Column9", "all.Column10", "all.Column11", "all.Column12", "all.Column13", "all.Column14", "all.Column15", "all.Column16", "all.Column17", "all.Column18", "all.Column19", "all.Column20"})
in
#"Expanded all"