Hi,
I have SP List 'WM For WELDER REGISTER' which has more than 2000 rows.
I used this formula to get data from that SP List.
First(Filter('WM FOR WELDER REGISTER', ('Grup Name Assembly') in ProdDesc.Text, NoDrawing.Text in Title)).'Grup Name Assembly'
But, 'in' function got delegation warning. Does anyone know, what function can I use to replace 'in' function?
Thankyou!
Hi @firda59 ,
Please try this
First(Filter('WM FOR WELDER REGISTER', StartsWith('Grup Name Assembly',ProdDesc.Text), StartsWith(Title,NoDrawing.Text) )).'Grup Name Assembly'
Btw, the first() function also will cause delegation warning, but it will not have any side effect.
Best Regards,
Wearsky
like this?
First(Filter('WM FOR WELDER REGISTER', StartsWith(ProdDesc.Text, 'Grup Name Assembly'), NoDrawing.Text in Title)).'Grup Name Assembly'
I still get delegation warning
WarrenBelz
791
Most Valuable Professional
MS.Ragavendar
410
Super User 2025 Season 2
mmbr1606
275
Super User 2025 Season 2