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
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.