Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Aspiring_Developer
Specialist
Specialist

Fetch non matching records between two tables

Hi All,

I have two tables like below :-

Table A:

QSUSer,
Access 

From Qliksesne AD ...

Table B:

User, Access

From text...

My requirement is to fetch the records which are present in txt file (Table B) but not in AD (TableA).

 

User

Aspiring_Developer_1-1626165988788.png

 

QS User

Aspiring_Developer_2-1626166019085.png

 

I need to compare the values of these two columns and need to identify the usernames present in user file but are missing in QS user list. Further i need to store them into QVD as i will be re-using those non matching records again.

 

Can anyone please help me ?

 

 

 

1 Solution

Accepted Solutions
kaushiknsolanki
MVP
MVP

Try this.

QS_User:

Load QSUser, Access from QSUSER;

NonMatchedUser:

Load User, Access from User where not exists(QSUser,User);

 

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!

View solution in original post

2 Replies
kaushiknsolanki
MVP
MVP

Try this.

QS_User:

Load QSUser, Access from QSUSER;

NonMatchedUser:

Load User, Access from User where not exists(QSUser,User);

 

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
Aspiring_Developer
Specialist
Specialist
Author

Hello @kaushiknsolanki 

Tried  but getting error 'QsUSer' not found