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: 
rmalkus
Contributor II
Contributor II

Add a field from a table to another table

How do I join fields from the Employees table into the Order table using the common, field, EmployeeID?

 

 

 

Labels (1)
1 Reply
vinieme12
Champion III
Champion III

OrdersData:

Load *,EmployeeID  from datasource;

Left Join (OrdersData)

Load EmployeeID,EmployeeName from employeedatasource;

 

also refer below posts

https://community.qlik.com/t5/QlikView-App-Dev/Understanding-Join-Keep-and-Concatenate/td-p/328379

 

https://community.qlik.com/t5/Qlik-Design-Blog/Don-t-join-use-Applymap-instead/ba-p/1467592

 

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.