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

How to exclude some records within a list

Hi,

I have a quite difficult problem...

I have a list of customers with the employees that supported them during two years (2013- 2014), and a certain measure (Amount).

In the first straight table I want to display customers that have some amounts for 2014 as dimension, showing as expressions the amount for 2014 and for (-> no problem!).

In the second straight table I want to display the employees (as dimension) bound to the customers described above (customer with amount for 2014), with their amounts for the two years (-> no problem for 2014, many problems for 2013!.

So, I have to exclude from employees list the ones which have in 2013 just customers with no amount in 2014; furthermore I have to exclude, for every employee, the amounts of 2013 related to customers with no amount in 2014.

Please, find data and the application attached with more details.

Thanks a lot,

Elena

1 Solution

Accepted Solutions
Not applicable
Author

Does something like this do the trick?

=sum({<CUSTOMER = P({<YEAR={"$(=(max(YEAR)))"}>}),YEAR={"$(=(max(YEAR)-1))"}>}AMOUNT)

View solution in original post

3 Replies
Not applicable
Author

Does something like this do the trick?

=sum({<CUSTOMER = P({<YEAR={"$(=(max(YEAR)))"}>}),YEAR={"$(=(max(YEAR)-1))"}>}AMOUNT)

ramoncova06
Specialist III
Specialist III

see if this helps

Anonymous
Not applicable
Author

Thank you very much!

It's perfect

Elena