Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to get matching data only

Hi Friends,

I have a big table with lot of columns with one key. For example 140,142,143,145,146 etc.

I have another table with the few keys for example 140,142.

Now I want to fetch all data from big table for only matching values for the above example 140 and 142 only.

Thanks

1 Solution

Accepted Solutions
PrashantSangle

Hi,

There is Various ways

1)Load Table with few Keys then Use left join and load another table having lots of columns

2) use Exist()

1st load table having few Keys, then load 2nd table having lots of column and use where condition in that use Exist()

Regards

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂

View solution in original post

4 Replies
alexandros17
Partner - Champion III
Partner - Champion III

Let's say TableA with all values and TableB with less values:

Load * resident TableA;

inner join

Load * resident TableB;

in this way only elements from table B that are Presente in tableA will be shown

Let me know

robert_mika
Master III
Master III

Look here

Duplicate row Issue

or look for ApplyMap

or

post our data

PrashantSangle

Hi,

There is Various ways

1)Load Table with few Keys then Use left join and load another table having lots of columns

2) use Exist()

1st load table having few Keys, then load 2nd table having lots of column and use where condition in that use Exist()

Regards

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
MayilVahanan

HI

You can try like this

First load the "second table contains 140,142".

Then use

Left Keep(Secondtable)

Load * from big table;

Hope it helps

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