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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
n1ef5ng1
Creator
Creator

wildcard

I have a listbox that contains 200+ fields. I would like to filter on fields that I need.

However, those fields that i would want to filter in listbox have a comma in between.

if(Place = 'Semarang,Java','indonesia;')

becasue of that comma, it does not read that particular field, think is because if statement detect comma as next command.

I tried * such as if(place = 'semarang*','indonesia), it doesn read too.

Any advice

Labels (1)
2 Replies
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

If you want filter the values in the listbox that contain a comma you can enter *,* as search string.


talk is cheap, supply exceeds demand
CELAMBARASAN
Partner - Champion
Partner - Champion

I dont think it will do where your using this expression? chart, script...?

if it is a problem then check with this

As gwassenaar said you want to filter the values with comma then go with wildmatch(fieldname, '*,*')

or you need to filter some values(hard coded) then

if(Place = 'Semarang' & Chr(44) & 'Java','indonesia;')


Hope that helps