Security provider - set multiple value

I’am trying to set multiple values security provider’s condition with no success. I can’t access to the protected file. Please help.

You can’t list multiple comma separated values like that. The condition expects a single value there.

With “=” operator, you can put in just a single value.
For multiple, you need to use “IN”.
Then in the value part, one of the following array formats should work. Don’t remember:

  1. [FDR,DEVJ,DEVS]
  2. ['FDR'.'DEVJ','DEVs']

As @sid mentions, you can use ‘IN’. You just need to enter a comma-separated list, eg:

image

1 Like