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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

assigning multiple value for getselectionfield

Hi,

I am displaying a text whenever i select a field value to prod using

GetFieldSelections([Status])='Prod'

in condition.

This shows whenever i click on prod

but if i click on close and prod

its not displying..

i wan it for multiple selection whenever prod is in use i wwant to display chart

like if slect staus=close and saus = prod-- ext should be displayed

or

staus = prod txt need to be dipslayed.

status = prod and status = set text should be displayed

if status=set text should not be displayed.

....

Regards.

Prajna

1 Solution

Accepted Solutions
anbu1984
Master III
Master III

GetFieldSelections([Status]) like '*Prod*'

Or

Index(GetFieldSelections([Status]),'Prod')

View solution in original post

4 Replies
lironbaram
Partner - Master III
Partner - Master III

try this

wildMatch(getfieldselections(Status),'*Prod*')>0

jagan
Partner - Champion III
Partner - Champion III

Hi,

Try match()

like this

Match(GetFieldSelections([Status]), '*Prod*')

Regards,

Jagan.

anbu1984
Master III
Master III

GetFieldSelections([Status]) like '*Prod*'

Or

Index(GetFieldSelections([Status]),'Prod')

Not applicable
Author

Thank you

Regards,

Prajna