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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
george456
Creator
Creator

Deriving a New table from existing tables

Dear Community

I have a typical star schema layout and I need to create a summarized table from two resident tables in order to link another input file 

 

Table A                                                     Table B

Customers                                             Customer Groups

Sales                                                         Customers

Product Code

 

The New Table must be:

Customer Groups

Product code

Sales ( Group by Customer Groups)

Please can you assist me in this. 

Thanks

1 Solution

Accepted Solutions
melghandour89
Partner - Contributor III
Partner - Contributor III

Hello Try Load ... Resident 

Noconcatenate
MergeTable:
LOAD *
resident TableA;
LEFT JOIN (MergeTable)
LOAD *
resident TableB;
Drop Table TableA, TableB;

Thanks

 

View solution in original post

1 Reply
melghandour89
Partner - Contributor III
Partner - Contributor III

Hello Try Load ... Resident 

Noconcatenate
MergeTable:
LOAD *
resident TableA;
LEFT JOIN (MergeTable)
LOAD *
resident TableB;
Drop Table TableA, TableB;

Thanks