Created
November 15, 2022 19:09
-
-
Save ncalm/76d863b0f10a814ff1a6156d98edd774 to your computer and use it in GitHub Desktop.
M function to cross join two lists
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (list1 as list, list2 as list) as list => List.TransformMany(list1, each list2, (x,y) => {x,y}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment