sharepoint online item level permission not available

Terry Chan 206 Reputation points
2022-04-07T13:12:32.127+00:00

I find the item level permission in sharepoint online list settings is missing. How to get this setting available?

Microsoft 365 and Office | SharePoint | For business | Windows
{count} vote

Accepted answer
  1. Yanli Jiang - MSFT 31,601 Reputation points Microsoft External Staff
    2022-04-11T01:40:09.307+00:00

    Hi @Terry Chan ,

    Please follow the steps I say below.
    First, The item level permission settings can not be found in both types of issue tracking list or document library. Please make sure your list is not of these two types.

    Second, check the permission level of the user in site and list level. The Item Level Permissions functionality is available to this User only if the level of site and list is at least design.

    Finally, With admin permissions, we can programmatically configure project-level permissions in SharePoint Online through PowerShell.

    #Set Parameters  
    $SiteURL = "https://xxxx.sharepoint.com/sites/yyyy"  
    $ListName = "listname"  
        
    #Connect to SharePoint Online site  
    Connect-PnPOnline -Url $SiteURL  -Credentials (Get-Credential)  
       
    #Get the List  
    $List = Get-PnPList $ListName -Includes ReadSecurity  
       
    #Set List Item-Security  
    $List.ReadSecurity = 2 #"Read items that were created by the user"  
    $List.WriteSecurity = 2 #Create items and edit items that were created by the user  
    $List.Update()  
    Invoke-PnPQuery  
    

    Thanks,
    Yanli Jiang

    ===========================================

    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


1 additional answer

Sort by: Most helpful
  1. Lee 0 Reputation points
    2025-02-06T09:24:44.7733333+00:00

    This one took me a while to find so dropping this note in case it is useful to anyone else. Even though my account had 'Full Controll' it didn't have the item level permissions option in advanced settings, all the rest were there just not item level permissions. The only account that had that was the one that created the list.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.