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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
risabhroy_03
Partner - Creator II
Partner - Creator II

Nested Searching

Hey,

I have 2 columns named AQPART and AQMTLP.

risabhroy_03_0-1657640037846.png

I want to search for my AQMTLP value in AQPART and want to print the corresponding value of AQMLTP.

For ex - I want to search MTLA42671 from AQMLTP in AQPART and I want to print the corresponding AQMLTP value for that.

 

Please help.

1 Reply
edwin
Master II
Master II

load your table as a mapping table then use applymap:

load mapping table1:
load AQPART,AQMTLP
....from....;

load applymap('table1', AQMTLP,'NOT FOUND') as newfield
....from....;

you can then decide what to do if newfield is NOT FOUND