I am trying to make a search box in google sheets which searches data based on keywords. This is specific to a spare parts inventory system. Each item is defined by 5 columns namely Type, Part Name, Part Number, Price, Stock. One example of an item would be "Lockstitch","Needle Bar Bush","229-10312 / 331-2312", "500", "3000".
In a separate sheet, I am trying to make a search box where I put in keywords like "Lockstich" "Bush" and the result should display.
I have tried concatenating the column name into one string and concatenating the keywords and matching them using QUERY function, but the problem that arises is that when I try to search "lockstitch bush" it doesn't give result because it does not contain in the string "Lockstitch Needle Bar Bush 229-10312 / 331-2312 500 3000"
I want the code to separately search each keyword in the combined string and give out results matching the keywords