Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I would like to obtain all possible combinations between two variables.
I currently have 2 variables, Names and Cities
Table 1:
Name1
Name2
Name3
Table 2:
City1
City2
City3
The final table should be:
Name City
Name1 City1
Name1 City2
Name1 City3
Name2 City1
Name2 City2
Name2 City3
Name3 City1
Name3 City2
Name3 City3
I'd greatly appreciate some insight on how to deal with this in QlikSense.
Many thanks,
Hello,
do cross join
Final:
Load Name from table1;
Join
Load City from table2;
Regards,
Prashant Sangle
Hello,
do cross join
Final:
Load Name from table1;
Join
Load City from table2;
Regards,
Prashant Sangle
HI
Load Name from table1;
Join
Load City from table2;
it will become cartesian product and give expected values.