Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
I have list with id and I try to build a button that exklude two of the ids. I manage to exklude one but not two. Hows should I write the code?
step 1 : add 'Select in Field' action and put (ID1|ID2) in expression
step 2 : add 'Select Excluded' action to the same button
this will solve your problem.
What is the expression that your are using in button actions?
May be you can concat both the ids
= '(' & Concat({< ID-= {'ID1', 'ID2'} >}ID, '|') & ')'
For multiple values, you could use search string with values separated by pipe symbol. Try like"
=( ID1 | ID2)
step 1 : add 'Select in Field' action and put (ID1|ID2) in expression
step 2 : add 'Select Excluded' action to the same button
this will solve your problem.