Hi @CvP ,
@Tolu_Victor's solution is close - just left out list and field names in the positions required. A couple of other things - get rid of the Delegation warning (you have not solved the limitation - just masked it, but OK if your list is under your limit). Also allow for the search box to be empty
If(
Len(SearchInputField) > 0,
With(
{
wTeam:
AddColumns(
TeamList,
"Member",
Concat(
teammembers,
DisplayName
)
)
},
Filter(
wTeam,
SearchInputField.Text in Member
)
)
)
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.
Visit my blog Practical Power Apps