Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
sharankv
Contributor
Contributor

Loading the matched records

I have two tables namely Payments and Disease Area.

Payments table has 65 fields. Some of them are:

Payments:

Company,

Brand,

Revenue,

Date

..........;

Disease Area table has 4 fields such as:

Disease Area:

Company,

Brand,

Disease Area,

Theraupetic Area;

In my data, I have more Company distinct values in Payments table when compared to the Company field distinct values in Disease Area table.

My requirement is to load only the records for which the Company values are common in both the tables.

Please come up with the answers

Thanks

Sharan

2 Replies
Anil_Babu_Samineni

You can try with Inner Join

Payments:

Company,

Brand,

Revenue,

Date

..........;

Inner Join(Payments)

Disease Area table has 4 fields such as:

Disease Area:

Company,

Brand,

Disease Area,

Theraupetic Area;

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
sunny_talwar

You can use Keep statement (inner or Left/Right Keep) in case you don't want to join them for any reason.

Understanding Join, Keep and Concatenate