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: 
sujit_nath
Creator III
Creator III

Qlikview Join , scenario

 I have two tables in a way that Table 1 has columns A,B,C,D,E and Table 2 has Columns A,Q,R,S,T. In Qlikview table viewer, they are connected on Column A (Not join). Now I have got a third table, Table 3 with column B and Q. I want to show the data in the dashboard which would match B and Q combination from table 3.

How should I achieve that? I somehow implemented that using lot of joins and drops, but is there an easy way? How should I implement this with right join?

Labels (1)
3 Replies
martinpohl
Partner - Master
Partner - Master

Hi,

you need to join the tables because if you are loading them without you will get a circular reference.

What kind of join (left, right, inner outer) is depending on which datas you want. Is there a master table?

Regards

zhadrakas
Specialist II
Specialist II

if table 3 has only B and Q you can go like

 

Load * from Table3;
left join Load * from Table 2;
left join Load * from Table 1;

 

EDIT: didnt see that you want to keep Table 1 and 2 seperate

3: Load * from Table 3;
2: Load * from Table 2 where exists(Q);
1: Load B,C,D,E from Table 1 where exists(A) AND exists(B);

regards

tim

Brett_Bleess
Former Employee
Former Employee

Did Tim's post get you a working solution for your use case?  If so, be sure to come back to the thread and use the Accept as Solution button on his post to give him credit for the assistance and to let other Community Members know this worked for the use case.  

The only place I could point you to try to find some other ideas is the Design Blog area, here is the base URL, you can search yourself, as I was not exactly sure what you needed on this one, but I suspect you can find some posts that may be of some help to you.  I generally start with a single term, see what pops up and then use other words from that first search to narrow things down etc.

https://community.qlik.com/t5/Qlik-Design-Blog/bg-p/qlik-design-blog

Regards,
Brett

To help users find verified answers, please do not forget to use the "Accept as Solution" button on any post(s) that helped you resolve your problem or question.
I now work a compressed schedule, Tuesday, Wednesday and Thursday, so those will be the days I will reply to any follow-up posts.