Action based on multi select box

Hi Everyone,

I am trying to disable a button if the current user is not listed as an “approver” on a row. This function works well if only one user is selected in the select box, but doesn’t work if I select more than one option on the select box.

Here is the formula I am using (its the last function I need the help with):

thisRow.HiddenDateSubmission != “” OR thisRow.[Quote Received] = “False” OR
User() != thisRow.Approver

The button is active here because I am selected as the approver (and only me)

This one myself and one other is selected as approvers, and the button isn’t active, but should be.

Any help would be most appreciated!

Try something to the effect of thisRow.Approver.Contains(User())=false

Disclaimer: I’m not 100% sure it will work without trying it…

The In() function is also something to try.

Works like a charm! Thank you!

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.