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

Announcements
Only at Qlik Connect! Guest keynote Jesse Cole shares his secrets for daring to be different. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Help need for loading data

I am loading Table A(PO_Key is combination of 3 fields).

From table B and C i want to load only those PO_Keys which are present in table A.

Pl help..

Table A:

AL1,

AL2,

AL3,

AL1 &'-'& AL2 &'-'& AL3 as PO_Key,

Reg,

Date,

Mastr

From Qvd A(qvd)

where Year(Date)>'2007' ;

Table B:

BL1,

BL2,

BL3,

BL1 &'-'& BL2 &'-'& BL3 as PO_Key,

Meg,

str

From Qvd B(qvd) ;

Concatinate

CL1,

CL2,

CL3,

CL1 &'-'& CL2 &'-'& CL3 as PO_Key,

Ver

From Qvd C(qvd);

3 Replies
MayilVahanan

hi

try with exists concept. like

where exists(po_key,po_key);

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

I tried this.. It is saying PO_Key does not exsist.

This may br PO_Key is combination of 3 fields.

MayilVahanan

hi

try  with resident concept and drop the actual table.

like

load * resident tablename where exists(fieldname,fieldname);

hope it helps.

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