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

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
cancel
Showing results for 
Search instead for 
Did you mean: 
rassanbekov
Partner - Contributor
Partner - Contributor

Employee lists

Hello!

I have faced the problem. There are two lists of employees.

First contains the employee names for all departments.

The second contains only one department employees.

The data should be filtered by the one department employee only.

When I use "as" in script, the employees are properly matched. But the data for other employees are also loaded. How can I stop loading the data for all employee in Qlikview?

22 Replies
d_prashanthredd
Creator III
Creator III

All_Departments:

LOAD [Department name] as Department,

     [Employee name] as Employees,

     [Other details],

     Salary

FROM

(ooxml, embedded labels);

Inner Join    (All_Departments)

Specific_Department:

LOAD Department,

     Employees

FROM

(ooxml, embedded labels, table is Sheet1);

rassanbekov
Partner - Contributor
Partner - Contributor
Author

Worked out! Thank you!

d_prashanthredd
Creator III
Creator III

Awesome.. Mark the appropriate solution as "Correct" or "Useful"