Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
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