Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Aspiring_Developer
Creator III
Creator III

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
Partner Ambassador/MVP
Partner Ambassador/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
Partner Ambassador/MVP
Partner Ambassador/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
Creator III
Creator III
Author

Hello @kaushiknsolanki 

Tried  but getting error 'QsUSer' not found