Question

I am using PnP PowerShell to access the SharePoint Online environment.

How can I delete rows of a SharePoint list?

Was it helpful?

Solution

I think this is what you are asking for:

Remove-PnPListItem -List "[Your list Title goes here]" -Identity ($TheItemId) 

OTHER TIPS

You can delete a list item/row using below command:

Remove-PnPListItem -List "Demo List" -Identity "1"

Where -Identity is the ID of the list item, or actual ListItem object.

Microsoft Official Reference: Remove-PnPListItem

If you want to remove all items from a SharePoint Online list then check below reference:

Remove all items from a SharePoint Online list using PnP PowerShell

Additional Reference: Get-PnPListItem - Using this command first you can fetch the list items (single item or multiple items) and then you can delete the list item using above command.

You could use Get-PnPListItem get all items you want to delete, then you can use ListItem.DeleteObject method in the loop, or you could choose use Remove-PnPListItem in the loop.

Licensed under: CC-BY-SA with attribution
Not affiliated with sharepoint.stackexchange
scroll top