Good day ESRI Community
We have created a survey with a number of questions groups and repeats.
We have 5 different users that can sign into the survey, and we would like each user to only access their specific field questions. Some of the survey questions can have 3 or 4 users that need access.
We have tried setting up the the body::esri:visible column, it works for one user but not many users.
Any assistance would be appreciated.
Solved! Go to Solution.
Your formula is invalid, you can't list values with commas between them like that. Use "or" like this instead:
${Username} = 'User1' or ${Username} = 'User2' or ${Username} = 'User3' or ${Username} = 'User4'
Your formula is invalid, you can't list values with commas between them like that. Use "or" like this instead:
${Username} = 'User1' or ${Username} = 'User2' or ${Username} = 'User3' or ${Username} = 'User4'
Thanks for the formula. It works well!