Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.

Visualization and Usability

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now

Who Me Too'd this solution

micheledenardi
Specialist II
Specialist II

Try with Exists() function:

Employee:
Load
   employee_id,
   employee_id as employee_id_check,
   ...
From Employee.qvd(qvd);

Call:
Load
   ....
From Call.qvd(qvd)
 Where exists(employee_id_check,employee);
Drop field employee_id_check;
Michele De Nardi
If a post helps to resolve your issue, please accept it as a Solution.

View solution in original post

Who Me Too'd this solution