Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I would like to hide values in a list box. For example, I have a list box with values - red, blue, yellow, green, purple, I want to hide the value green from appearing in the list box. Is this possible?
Thanks
Greg
Hi Greg,
You will writeexpression in list box like
if(<FieldName> <> 'red', <FieldName>)
Find Example in attachment.
--Jai
Try like
If(Value <> 'Green', Value)
or
If(not WildMatch(Value , 'Green'),Value )
Hi Greg,
You will writeexpression in list box like
if(<FieldName> <> 'red', <FieldName>)
Find Example in attachment.
--Jai
Thanks Jai
How do I hide more than one colour?
then you need to use match or wildmatch function.
--Jai
Thanks Jai
Would you be able to show me an example of the match or wildcard function please?
Thanks very much.
Greg
Find attachment.
--Jai
Very grateful. Thanks very much Jai.
Greg