Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
everest226
Creator III
Creator III

Listbox

HI i have a field name [tp IASS] which has value if  aa,ab,ac,ad ,  i only want to show Aa,ac,and,ad.  in listbox

Labels (1)
1 Solution

Accepted Solutions
vishsaggi
Champion III
Champion III

Try like

= IF(Not Match([tp IASS], 'ab'), [tp IASS])

View solution in original post

2 Replies
YoussefBelloum
Champion
Champion

Hi,

try this:

=if(match(field,'value1','value2','value3',..'valuex'), field)

vishsaggi
Champion III
Champion III

Try like

= IF(Not Match([tp IASS], 'ab'), [tp IASS])