
I am currently building an application to manage surveys. I have a table for the surveys which I link to the questions via a GUID. Now I display all the surveys in a gallery. My question now is how can I assign people to my survey so that only the assigned people can see this survey?
Hi @alt88,
I guess there are multiple ways to implement it, but one of them could be to create a separate table to store pairs of User/Survey GUID and then filter your gallery by looking up the survey GUID per current user.
Another way that could probably work for low scales, is to add a Person column to your Survey list, allow multi selection and then filter your list if the current user is in the list of users.