Select to view content in your preferred language

Making certain Survey123 groups visible based on username

515
2
Jump to solution
05-22-2023 05:40 AM
UlrichVanderHeyde
Emerging Contributor

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. Survey123 Visibility.png

Any assistance would be appreciated.

Tags (2)
0 Kudos
1 Solution

Accepted Solutions
MobiusSnake
MVP Regular Contributor

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'

 

View solution in original post

2 Replies
MobiusSnake
MVP Regular Contributor

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'

 

UlrichVanderHeyde
Emerging Contributor

Thanks for the formula. It works well!

0 Kudos