Skip to main content
Announcements
July 15, NEW Customer Portal: Initial launch will improve how you submit Support Cases. IMPORTANT DETAILS
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
Luminary Alumni
Luminary Alumni

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