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

Dynamically exclude values in set analysis

Hi, I have a line chart that I want to show the 3 lines:

1. a team total

2. figure of one person

3. combined figure of all other people in the same team except the selected person

I managed to do the first 2, but couldn't figure out how to do #3 as the selection will change so I cannot hard code the values in the set analysis expression.

qvw is attached. Thanks!

1 Solution

Accepted Solutions
Gysbert_Wassenaar

Try Sum({$<Year=, Person=E(Person)>} Hours) / Count(DISTINCT {$<Year=, Person=E(Person)>} Project)


talk is cheap, supply exceeds demand

View solution in original post

2 Replies
Gysbert_Wassenaar

Try Sum({$<Year=, Person=E(Person)>} Hours) / Count(DISTINCT {$<Year=, Person=E(Person)>} Project)


talk is cheap, supply exceeds demand
Not applicable
Author

Thanks so much! Exactly what I was hoping to do!