Re: Cross join or Cartesian Join of collections
I created 2 collections:
ClearCollect(C1, {date1: "2020-04-01"}, {date1: "2020-04-02"}, {date1: "2020-04-03"});
ClearCollect(C2, {name2: "AA"}, {name2: "BB"});
Then I created a collection C3 with the following expression:
ForAll(C1, ForAll(C2, Collect(C3, {date3: date1, name3:name2})))
This is how my collection looks like:

Let me know if this is what you were looking for.
---
If you like this reply, please give kudos (Thumbs Up). And if this solves your problem, please mark this reply as a solution by selecting Accept as Solution. This makes it easier for others to find answers to similar questions.
Thanks!
Hardit Bhatia
Blog | Twitter | LinkedIn | Facebook | YouTube | Email