Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a parameter (Items) containing the following values:
Apple, Orange, Table, Chair, Banana, Kiwi, Pen
I want to add a button + an action that that will select all those values except for Table and Chair.
Can someone please help with how I can achieve that? If at all possible?
Thanks,
Amit
use for search expression
='('&Concat({<Items=-{'Table','Chair'}>} DISTINCT Items,'|')&')'
May be this as the search string
("Apple"|"Orange"|"Banana"|"Kiwi"|"Pen")
I know this can be done but I was looking for something more generic in cases where I have a long list and I need to exclude only a few.
I think I found the answer
Basically it's 2 actions and the order is important.
Select in Field - Items
(Table|Chair)
Select Excluded - Items
Does anyone else have any better suggestions?
use for search expression
='('&Concat({<Items=-{'Table','Chair'}>} DISTINCT Items,'|')&')'
Example attached
Look at stigchel's response
Hi,
You have to add "select in field" to button actions.
Your field should be "Items" and search string will be (Apple|Orange|Banana|Kiwi|Pen).
Hope it helps!
Thank you!!!!
You're welcome