Skip to content

Instantly share code, notes, and snippets.

@Hugoberry
Last active April 10, 2017 09:50
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 Hugoberry/d4d11505b2b1388b175a280b43c871f1 to your computer and use it in GitHub Desktop.
Save Hugoberry/d4d11505b2b1388b175a280b43c871f1 to your computer and use it in GitHub Desktop.
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