Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
przemyslaw_r
Contributor II
Contributor II

Multiplying tables

Hello Qlik Community,

I have question, how i can join/multiply tables like on the picture.

Thank you in advance.Capture.PNG

1 Solution

Accepted Solutions
sunny_talwar

May be this

Table:

LOAD Date

FROM ...;

Join (Table)

LOAD Product

FROM ...;

This will do a Cartesian Join between Date and Product

View solution in original post

2 Replies
niclaz79
Partner - Creator III
Partner - Creator III

TableA:

LOAD

     Date

From xxxxxx;

outer join(TableA)

LOAD

     Product

From zzzzzz;

sunny_talwar

May be this

Table:

LOAD Date

FROM ...;

Join (Table)

LOAD Product

FROM ...;

This will do a Cartesian Join between Date and Product