Has anyone attempted to validate a field so it can be only edited by specific role, team or group and how if its possible?
Ive almost got there with below:
IF($$USER.{roleID} != "56f447e300026629665421f76025385c", "This field can only be edited by users with the Ops: Sourcing and Vendor Management role.", "")
But during testing it completely locked me out even if I changed roles or primary role.
Solved! Go to Solution.
Views
Replies
Total Likes
I think this will work, {roleID} must be in {} for the statement to work
This seem only to work with user primary role
IF($$USER.roleID!="56f447e300026629665421f76025385c",
"This field can only be edited by users with the Ops: Sourcing and Vendor Management role.",
""
)
Views
Replies
Total Likes
I think this will work, {roleID} must be in {} for the statement to work
This seem only to work with user primary role
Views
Likes
Replies