Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
michaelneck
Contributor III
Contributor III

Multiple selections for GetFieldSelections in the same field...

Hi All,

I am trying to exclude two values in a field when they are selected together. The below works when selected individually but not when selected together. Is there a way to do this? Any help would be appreciated.

Individually works:

GetFieldSelections([Job Category Desc])<>'Executive' AND GetFieldSelections([Job Category Desc])<>'Senior Management'

Failed Attempts to include when both selected:

GetFieldSelections([Job Category Desc])<>('Senior Management' AND 'Executive')

GetFieldSelections([Job Category Desc])<>('Senior Management' OR 'Executive')

GetFieldSelections([Job Category Desc])<>(Senior Management|Executive)

1 Solution

Accepted Solutions
sunny_talwar

May be this

SubStringCount('|' & GetFieldSelections([Job Category Desc], '|,|') & '|', '|Executive|') = 0 and

SubStringCount('|' & GetFieldSelections([Job Category Desc], '|,|') & '|', '|Senior Management|') = 0

View solution in original post

2 Replies
sunny_talwar

May be this

SubStringCount('|' & GetFieldSelections([Job Category Desc], '|,|') & '|', '|Executive|') = 0 and

SubStringCount('|' & GetFieldSelections([Job Category Desc], '|,|') & '|', '|Senior Management|') = 0

michaelneck
Contributor III
Contributor III
Author

That worked perfectly Sunny! Thanks a lot!