Skip to content

Instantly share code, notes, and snippets.

@ImkeF
Last active March 12, 2019 22:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ImkeF/ce958b6c7a6b065a9c3c1b75f87d4c70 to your computer and use it in GitHub Desktop.
Save ImkeF/ce958b6c7a6b065a9c3c1b75f87d4c70 to your computer and use it in GitHub Desktop.
let func =
(List as list) =>
let
List = List.Buffer(List),
LA =
List.Accumulate(
List.Skip(List),
[Table = Table.FromColumns({List}), Counter = 2],
(prev, this) => [
AddColumn = Table.AddColumn(prev[Table], "Column"&Text.From(prev[Counter]), each List.Difference(List, Record.FieldValues(_))),
Table = Table.ExpandListColumn(AddColumn, "Column"&Text.From(prev[Counter])),
Counter = prev[Counter]+1
]
),
Result = LA[Table]
in
Result ,
documentation = [
Documentation.Name = " List.Permutations ",
Documentation.Description = " Creates a permuations table from all elements from a <code>List</code> ",
Documentation.LongDescription = " Creates a permuations table from all elements from a <code>List</code> ",
Documentation.Category = " List ",
Documentation.Source = " https://wp.me/p6lgsG-Qz . ",
Documentation.Version = " 2.0 (Changed from List.Generate to List.Accumulate) ",
Documentation.Author = " Imke Feldmann: www.TheBIccountant.com . ",
Documentation.Examples = {[Description = " ",
Code = " ",
Result = " "]}]
in
Value.ReplaceType(func, Value.ReplaceMetadata(Value.Type(func), documentation))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment