Pregunta

I have a list that is 12488 items in size that with your kind help I have uploaded to SharePoint Online (below post).

How do I view a list in SharePoint

I need SharePoint mobile app users to be able to access this to see if a certain item/customer is "yes" or "no".

Unfortunatley the "yes" (ok to proceed with work) is almost 4800 of the total items so even if I remove the "no" (do not proceed with work) and upload this to SharePoint Online, it wont be long before that exceeds the 5000 limit.

Is there a more elegant way of achieving this?

Thanks in advance,

¿Fue útil?

Solución

Split the list items into two views with the below condition :

  1. With "Yes" condition and created or modified columns

    1. With "No" condition and created or modified columns

Or split even with more views depends on the various metadata and their frequency of updates.

View filter logic should be something like below :

  1. For view 1:

Column 1 eq "Yes" and created >= [today] - 3

  1. For view 2:

Column 1 eq "No" and created >= [today] -3

Notes :

  • In the above filter displaying data which were created for the last 3 days with yes and no values. This is just for example, you can change it as per your requirements.

And so on....

The bottom line of the above approach is, at any given point of time view will have less items (less than 5k).

For details implementation please refer the below article :

List view threshold error(5000 items issue) in SharePoint On-Premise/SharePoint Online

Otros consejos

I guess the long term solution could be to set up a flow or timer job to trim the listitems, either deleting the old entries or migrating them to an archive of sorts

Licenciado bajo: CC-BY-SA con atribución
scroll top