Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a multibox with column name STATE with the values (US, UK, IN, PK, AUS).
I want to do some filter using wildmatch to get only US and UK.
Can any one explain me how to use wildmatch,
Is the below condition is right??
=WildMatch([STATE],"US","UK")
Thanks,
Hi,
I am using for this a button with a select - trigger and the search string:
= '(' & 'US & '|' & 'UK' & ')'
HtH, Roland
Hello,
If you are not going to use wildcards, Match will work better. So in your multibox add an expression
=If(Match([STATE], 'US', 'UK'), [STATE])
Hope this helps.