Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
ashmitp869
Creator II
Creator II

How to get two fields from two different table with out common field ?

Hi there ,

T1:

LOAD

NTNAME

Resident SA;

T2:

LOAD

WARD

Resident QVD;

How to get the third table :

T3:

LOAD

NTNAME,WARD

FROM T1 and T2 in qlikview script ?

 

Labels (1)
1 Reply
MayilVahanan

Hi

If there is no common field, you can use cross join in order to get the 2 fields in one table. Like below,

Load Distinct NTNAME Resident SA;

Join

Load Distinct WARD Resident QVD;

 

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.