@CMOLINAV ,
With() is subject to Delegation limits on the output, so if you set you limit to 1, it will return one record. However setting your limit back to 500 (or whatever) and doing something like this
With(
wList:
Filter(
SPList(
Field = "MOLINA"
)
},
Search(
wList,
SearchBox.Text,
"Title",
"OtherField"
)
)
and you have 2,000 records, will allow up to 500 of these (where field is MOLINA) to be then searched (a non-Delegable filer) whereas
Search(
Filter(
SPList(
Field = "MOLINA"
)
},
SearchBox.Text,
"Title",
"OtherField"
)
is not Delegable and you could only address the first 500 records of the list with it,
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.
MVP (Business Applications) Visit my blog Practical Power Apps