Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
villegasi03
Creator
Creator

Combine records with different keys

I am building a dashboard that shows employee sales and performance. When I brought in the employee table for the first time I noticed that the same employees are listed multiple times with different IDs. Is there something I can do to clean that up in the load script. Since sales are linked to the employee ID, it will need to be able to relate all sales for the one employee listed under two different IDs.

I am a bit new to QlikView so any help would be much appreciated.

1 Solution

Accepted Solutions
boorgura
Specialist
Specialist

If all you need is to sum up the Sales per employee name and not ID - you will have load the name and Sum(Sales).

And you should not load the ID, so that you can just group by employee name.

But note that you will have to make sure that employee names are unique,

Let me know if its not clear.

View solution in original post

2 Replies
boorgura
Specialist
Specialist

If all you need is to sum up the Sales per employee name and not ID - you will have load the name and Sum(Sales).

And you should not load the ID, so that you can just group by employee name.

But note that you will have to make sure that employee names are unique,

Let me know if its not clear.

villegasi03
Creator
Creator
Author

Makes sense. Thank you for your assistance.