Dear community,
I need your help again:
I use this formula to disable a button:
user().In(Filter(db_ROLLEN, RoleID = “6”).[Hold by]).Not()
So if the current user is NOT part of this list, the button is disabled. This works great, but only as long as only one user is assigned to this role. If there are severals, the “in” function never finds them.
I’ve tried this workaround which does not help:
user().ToText().In(Filter(db_ROLLEN, RoleID = “6”).[Hold by].ToText()).Not()
Any other idea?
Thanks a lot for your help,
Jann