New to Qlik Analytics

If you’re new to Qlik Cloud or Qlik Sense, start with this Discussion Board and get up-to-speed quickly.

Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!

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