QlikView App Dev

Discussion Board for collaboration related to QlikView App Development.

Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!

Who Me Too'd this solution

vishalarote
Partner - Creator II
Partner - Creator II

Yes u just Concate the field

select (Column1,Column2) as Composite Key,Data1

from Table1;

select (Column1,Column2) as Composite Key,Data2

from Table2;

after that use join

select a.Composite Key,b.composite key, Data1, Data2

from Table1 a left join Table2 b

where a.Composite=b.Composite;

View solution in original post

Who Me Too'd this solution