I created a view that will not display because it contains over 5000 entries. Now I cannot edit it or delete it.
Anyway to get rid of it?
I created a view that will not display because it contains over 5000 entries. Now I cannot edit it or delete it.
Anyway to get rid of it?
One thing, if you using the on prem version of SharePoint then an easy solution is
http://stevemannspath.blogspot.com/2013/05/sharepoint-2013-list-view-threshold.html
For Office 365, check Office 365/SharePoint Online – Getting Around the List View Threshold Error
Here is what you can do to fix the issue without deleting View.
First try to remember if the View is a filtered view. If it is not filtered then we have not choice rather delete the view.
Now open the list settings and - Open Indexed columns and add the columns which you used in the Filter criteria.
Next try opening the view and it will work as expected.
Removing View using PowerShell
$SPWeb = Get-SPWeb http://weburl
$List = $SPWeb.Lists["ListName"]
$View = $List.Views["ViewName"]
$List.Views.Delete($View.ID)
$List.Update()
$SPWeb.Update()
$SPWeb.Dispose()