Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
nickleshkevich
Contributor II
Contributor II

Qlikview exclude action

Hi,

I had a problem

I have two sheets A and B, on the sheet A is the field C, if not selected any value in the field C, then going on a sheet of B must following condition holds - in the field C, select the value excluding "Value1" (not "Value1 "), if the value selected - leave the the selected value

1 Solution

Accepted Solutions
sunny_talwar

Try sheet level trigger on field C:

=If(GetSelectedCount(c) = 0, '(' & Concat({<c -= {'Value1'}>}DISTINCT Chr(34) & c & Chr(34), '|') & ')', '(' & Concat(DISTINCT Chr(34) & c & Chr(34), '|') & ')')

Attaching a sample for your review

View solution in original post

3 Replies
sunny_talwar

Try sheet level trigger on field C:

=If(GetSelectedCount(c) = 0, '(' & Concat({<c -= {'Value1'}>}DISTINCT Chr(34) & c & Chr(34), '|') & ')', '(' & Concat(DISTINCT Chr(34) & c & Chr(34), '|') & ')')

Attaching a sample for your review

nickleshkevich
Contributor II
Contributor II
Author

Thank you so much! Work perfect!

sunny_talwar

Awesome