Hi,
So I’ve done a lot of reading around delegation and large datasets.
I have a SP list as my datasource.
This list currently holds just under 2000 items.
It will soon go above that. However I can’t see it going beyond 10,000 in the next 5 years.
Have a column which would ideally be a multi select choice column. However I avoided this because I know that I can’t filter this without running into delegation issues.
So I use a single line text column which holds a string of options separated with “,”.
This approach works well. However my issue now is that I cannot Filter the data source to search for terms within this string.
If I Split the string and lookup I run into delegation warnings again.
At the moment the only way I’m thinking it’s possible is to merge blocks of 2000 item collections. But this has performance issues.
Just an example:
Title Column A
1 ONE,TWO,THREE
2 TWO,THREE
3 ONE,FOUR,FIVE,SIX
…. ….
3000 SEVEN,TEN,ONE,FIVE
How can I filter Column A so that only items with ‘ONE’ are returned…
As always, thanks very much.