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

Preceding load with left join filter by status?

Hi

I have these tables, that i want to filter by status, but Preceding Load does not work because of the left join I think. I have tried resident load but could not get that to work either. I want the table to only load Person_ID with the Status='Married' any tips?

Person:

LOAD

"Person_ID",

Name,

Age,

WorkID;

FROM "Test.st002".dbo.person

Left Join (Person)

LOAD

"Person_ID",

Status,

Gender,

FROM

(biff, embedded labels, table is Sheet1$);

Thx

1 Solution

Accepted Solutions
sunny_talwar

May be this:

Person:

LOAD

"Person_ID",

Name,

Age,

WorkID;

FROM "Test.st002".dbo.person

Right Join (Person)

LOAD

"PersonID",

Status,

Gender,

FROM

(biff, embedded labels, table is Sheet1$)

Where Status = 'Married';

View solution in original post

4 Replies
sunny_talwar

May be this:

Person:

LOAD

"Person_ID",

Name,

Age,

WorkID;

FROM "Test.st002".dbo.person

Right Join (Person)

LOAD

"PersonID",

Status,

Gender,

FROM

(biff, embedded labels, table is Sheet1$)

Where Status = 'Married';

Not applicable
Author

It worked, thanks Sunny, can you explain why it worked with right join and not left join?

sunny_talwar

Since the goal is to remove the data from your left table based on whatever is available in your right table (think of it as the right table being the boss here) you would do right join. If in case you want to remove data from the table that is joined (right table) then you would do a left join (left table is the boss)

Not applicable
Author

Like a charm, thx again.