Give users permissions on item in other list
- by Nomz
Hello everyone,
This is what im working on:
i have two lists,
first one:
collumn user and collumn project that the user is assigend to.
second one (library):
a list of all the projects
I was wondering, how, by every row that is created in the first list (so adding a user and a project) it is possible to grant the user permissions on this project's reference in the second library (the projects library).
Example:
ProjectLibrary:
Project1
Project2
Project3
the first list:
user1 project1
user1 project2
user2 project2
user2 project3
user3 project3
now i want to give each user permission to see the project he's assigned to so that when he opens a third form, a combobox filled with projects will only show the projects he has permissions on.
thank you so much!