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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
pgalvezt
Specialist
Specialist

Bring value from other table

Hello, I have a Sentence:

if(num(Field1) = 1, I want to join one Field from table 1 and one Field from Table 2. I tried

BloqueoCartera:
Mapping Load
Homologo_Bsc01,
Tipo_Cartera_Bsc01
Resident BSC01;

Join(BTCC11)
Load Homologo_Btcc11,
if(num(`cod_bloq`) = 8, ApplyMap('BloqueoCartera',Homologo_Btcc11,Null())) as OtraCartera.

Nothing Happened.

Thank You

1 Reply
MayilVahanan

Hi,

     Try like this,

         

     Check the cod_bloq contains 8,

    

Join(BTCC11)

Load Homologo_Btcc11,

if(num(cod_bloq) = 8, ApplyMap('BloqueoCartera',Homologo_Btcc11,Null()),'Others') as OtraCartera

from ..

Donot use 'cod_bloq' , its take as string ..

Check Others value appear in OtraCartera..And then See the unMapped values based on it..By this, may be you can find Solution..

Hope it helps

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