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: 
Not applicable

Connect 2 Fields?

Hi Dears;

I would like to as follows :

Table1:
a,
b,
c,
d;

Table2:
i as a,
x,
y,
z,
if(b=x,y);

May i use resident and how? Or How can i do it?

Thanks
Best Regards...

Labels (1)
3 Replies
Miguel_Angel_Baeyens
Support
Support

Hello,

Try the following:

Table1:a,b,c,d;Table2:i as a,x,y,z,WHERE EXISTS(b, x) OR EXISTS(b, y);


Hope that helps.

Not applicable
Author


Hi;

I have 2 different tables from same database.

Is it true for this ?


Thans in advance...

Miguel_Angel_Baeyens
Support
Support

Hello,

Yes, since it works with already loaded data (first pull frorm the data source, then loads into memory only those who match).

Regards.