Hi, I just had a quick question about using Alteryx to do something I can do in Access relatively easy, but I can't find a solution. If I have a list of customers and a list of SKUs and I want to blend this data together to get every possible combination how would I get Alteryx to do that?
Historically I would just setup a query without a join in Access and then run that query and transform it back into a table to use as the source of my dataset.
The SQL would look like the below.
SELECT SKUs.SKUs, Stores.Stores
FROM SKUs, SKUs;
Thanks,
Justin