Skip to content

Instantly share code, notes, and snippets.

@Hugoberry
Last active April 10, 2017 09:50
Embed
What would you like to do?
Generate a dummy table in Power Query. It contains 1M records of form [key=number, value=GUID]
= Table.FromRecords(
List.Generate(()=> [ key = 0, value = Text.NewGuid()],
each [key] < 1000000,
each [key = [key]+1,
value = Text.NewGuid()]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment