Hello!
I'm opening this post to see if someone could help me with the challenge I'm facing in PowerApps.
I have a Canvas app with a horizontal gallery, that's connected to a Sharepoint list. On the items property of that gallery, I have the following code:
Search(
Filter(
myDataSource,
Category.Value = ThisItem.CategoryOption
),
SEARCHBOX.Text,
"field_21", "field_22")
So far, this works and I can use the searchbox (text input control) to filter my gallery, based on searching what I write on the searchbox on field_21 and field_22.
I also need to search on field_23, but field_23 is a lookup column in sharepoint that allows multiple values. If I simply add "field_23", I get the following error: "The function Search has invalid arguments. Wrong column type. Expects text type". I assume this is because this multiple selection column returns an array.
Do you have any ideas on how I could achieve this, in order to search for text within the different values of field_23?
Let me know if you need more details.
Thank you in advance 🙂