Forum Discussion
Jeyganesh
Aug 26, 2019Brass Contributor
SharePoint Online column level permission
We would like to set the column level permission in our SharePoint online site list. But i aware there is no option to set the column level permission for the list. Is there any way (using Flow o...
sunqibin
Jan 30, 2024Copper Contributor
https://appsource.microsoft.com/en-us/product/office/WA200004417Jeyganesh
We have the same needs, and I think this link can solve this problem perfectly.
- EliseSharePointOct 02, 2024Copper ContributorTurn on Content Types and hide the field in the content type, then disable quick edit.
You can also create a PowerApp form and set the field to read only or add a condition that allows users in a second list to edit the field. This is example code you would add to the Display field for the datacard, where the second list is named List Admins and the field you use is EmailAddress. It gets the current user email and compares it to the list: If(User().Email in 'ListAdmins'.'EmailAddress',DisplayMode.Edit,DisplayMode.View)
Display = If(User().Email in 'ListAdmins'.'EmailAddress',DisplayMode.Edit,DisplayMode.View)