Click here to Skip to main content
15,891,704 members
Articles / All Topics

This View Cannot Be Displayed Because It Exceeds the Listview Threshold (5000 items) Enforced by the Administrator

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
8 Mar 2017CPOL2 min read 5K  
Solution to error

This view cannot be displayed because it exceeds the list view threshold (5000 items) enforced by the administrator.

To view items, try selecting another view or creating a new view. If you do not have sufficient permissions to create views for this list, ask your administrator to modify the view so that it conforms to the list view threshold.

image

And if you dig more into it, the error will occur in your:

  • Web Parts
  • Custom Scripts
  • SharePoint Apps
  • CAML Queries

which is related to that list.

First We Have A Look at Why This Is Happening

The Live View Threshold is item count which is limited by SharePoint Administrator to process by SharePoint server at a time.

Further elaborating when you are viewing or query (CAML, ODATA, and REST) against the list SharePoint will process the entire set of items to get the required results even though you have mentioned limits or filters unless it is not indexed.

Thus, when it is exceeding threshold limit (5000 default), SharePoint will throw that error to you.

How To Resolve

Increase the List Threshold as a Temporary Fix.

The easiest way is to Increase the Threshold List View Limit. But this should be temporary and it is not good for server performance.

First, you can go to Central Administration and then Manage web Applications.

image

Then, select the web application you need to increase the List View threshold. And go to general settings and Resource Throttling.

image

Then, you can change the List View Threshold to accommodate the list items limit.

image

Recommended Approach to Use Indexed Columns

The recommended approach is used to cater to this problem using indexed columns. If you use the index column, SharePoint does not need to iterate entire list to deliver the results.

Let's have a look at a sample scenario. Assume that you have a list with 6000 items over 5 years time and your default view throws that error.

So first, you need to increase the List View Threshold to perform operations as I mentioned in the temporary fix.

Then, you need to create an Indexed Column.

Most common used scenario is use [Created] SharePoint default column as an Indexed column. But it might differ from your scenario.

Create an Index Column

Go to List settings and click on indexed columns:

image

Click on the Create a new Index Link:

image

Then choose a column that you need to Index and Create It as an index column.

image

Then you can edit the Filter in Default view to show only last year by adding [Today]-365 as an filter expression.

image

Then, you can change the List Threshold back to 5000. But make sure you are adding [Created] column expression for your CAML queries, REST queries and other queries.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Sri Lanka Sri Lanka
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
-- There are no messages in this forum --