I have created a table in powerapps that collects the individual strings from a text input box. The table is working and as users type in the text box it creates new items down the column. Now I am trying to Filter a Gallery to only display items that match any of the values in the table.
I am trying to filter by a multi-line text field. If a single word in the block of text matches, I would like it to display. The table will eventually be hidden from view, but as I look at it now, whenever words are typed in the text box, then separated with a space, it creates a new entry in the table.
This is the code for items on the table that works.
AddColumns(Split(SearchBox.Text," "),"Words",Result)
This is my attempted code for items on the gallery.
Filter(Projects,Details in DataTable1.Result)
Projects is the name of my data and Details is the name of the column with the multiline text I want searched.
I get an error saying the 'Result' name isn't valid. I can't find what expression to put in the second part of the Filter code. Actual results, my Gallery displays nothing when there are words typed. Expected results I want it to display all items that match at least one word from Details and the searchbox.
Thank you, Ryan Stewart