Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Return Unmatched values

Hello,

I wonder if someone would be kind enough to help me.

I have two tables, one that contains employees that have applied to join a bonus scheme in previous years and one table containing employees that have chosen to join this years shceme.

I would like to produce a table showing all those people who are joining this years scheme who have not previously applied to join.

I imagine it to take the form of a table join with a slelection, where the ID# in one table does not exist in the other. I believe in MSAccess this would be classed as an unmatched query

Being relatively new to qlikview I am not sure where to begin so any pointers would be great.

Thank you in advance. Saul.

1 Reply
mike_garcia
Luminary Alumni
Luminary Alumni

Hi,

You can create a Flag in the Load Script, using the Exists function. You would have something like:

-------------------------------------------------------------------------------------------------

PreviousScheme:

Load

...

EmpID

from PreviousSchemeTable.qvd;

NewScheme:

Load

...

EmpID,

If(not Exists(EmpID), 1) as _NewSchemeFlag

from NewSchemeTable.qvd;

-------------------------------------------------------------------------------------------------

You would have to check the syntax, but it gives you the idea.

Hope This Helps.

Mike.

Miguel García
Qlik Expert, Author and Trainer