Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello Qlik Community,
I have question, how i can join/multiply tables like on the picture.
Thank you in advance.
May be this
Table:
LOAD Date
FROM ...;
Join (Table)
LOAD Product
FROM ...;
This will do a Cartesian Join between Date and Product
TableA:
LOAD
Date
From xxxxxx;
outer join(TableA)
LOAD
Product
From zzzzzz;
May be this
Table:
LOAD Date
FROM ...;
Join (Table)
LOAD Product
FROM ...;
This will do a Cartesian Join between Date and Product