Forum Discussion
RJF61
Jul 28, 2022Copper Contributor
SharePoint/MS Lists Views
Hello, I have a SharePoint list where employees enter data via MS Lists. There is a significant amount of information from many employees so I want the user to only see their information in MS List...
- Jul 28, 2022
There are 2 ways of doing it
- Update your default view to filter items created by self. Set Created = [Me] which will filter out all items and display only items created by logged in user. This will not prevent users from changing views or creating new view to access all items.
- Second option is using item level permissions. Go to list settings -> Advanced settings -> Item-level permissions -> By setting 'Read items that were created by the user' & 'Create items and edit items that were created by the user' users are restricted to read/edit items only created by them. As admin with full control permission, you will still be able to view all items. This approach updates permissions at item level and there is no way for users to access items that are not created by them.
Bharath Arja
Jul 28, 2022Iron Contributor
There are 2 ways of doing it
- Update your default view to filter items created by self. Set Created = [Me] which will filter out all items and display only items created by logged in user. This will not prevent users from changing views or creating new view to access all items.
- Second option is using item level permissions. Go to list settings -> Advanced settings -> Item-level permissions -> By setting 'Read items that were created by the user' & 'Create items and edit items that were created by the user' users are restricted to read/edit items only created by them. As admin with full control permission, you will still be able to view all items. This approach updates permissions at item level and there is no way for users to access items that are not created by them.
- RJF61Jul 28, 2022Copper ContributorThank you. This was perfect.