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: 
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.