Hello
I am filtering a sharepoint list column call Title using
SortByColumns(Filter([@'200722_RAY_DD_LTO_DB'], StartsWith(CONTENU DISQUE TextSearchBox1.Text)), "CONTENU DISQUE", If(SortDescending1, Descending, Ascending))
The CONTENU DISQUE column contains long lists of text. The photos shows an example of very short lists. There are about 600 column entries, but the text content of each cell maybe a hundred times more characters.
My goal is to filter the CONTENU DISQUE for key words.
I have set the delegation settings to 1000. The app works if I change the filter to a short number / text entry.
I do not understand if the delegation issue is due to the number of characters per cell or the number of cells.
Should I consider another data source than sharepoint?
Any help most welcome
Hi @ChLowden ,
Firstly, I have done a blog on Delegation which may explain the issue to you, but you do not need any of the workarounds mentioned in it. If you: -
try this
With(
{wRayDD:[@'200722_RAY_DD_LTO_DB']},
Filter(
wRayDD,
TextSearchBox1.Text in 'CONTENU DISQUE'
),
"CONTENU DISQUE",
If(
SortDescending1,
Descending,
Ascending
)
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
User | Count |
---|---|
175 | |
111 | |
86 | |
44 | |
42 |
User | Count |
---|---|
228 | |
116 | |
115 | |
72 | |
67 |