Say I have a the following data table:
"Pet_Type" "Pet_Name " "Owner"
Dog Buster Adam
Cat Mushroom Becky
Toucan Rocko Chris
I'm trying to use one text input line to search on all three columns. I want it so that if I enter to the text input control: "og hri", the data table should display the Dog and Chris rows. Currently I've got a gallery populated by splitting the input text by spaces, like
Split(SearchInput.Text, " ")
Then, I filter the pet table by
Filter('Pets',IsBlank(SearchInput)||Title.Text in Pet_Type||Title.Text in Pet_Name||Title.Text in Owner)But when I put in "Dog Chris", it behaves very eratically, sometimes only showing the dog row, or chris row, or none at all. Once or twice I just had "Dog" and it showed nothing.