I want to create search box as bellow image.
Asked
Active
Viewed 91 times
-1
-
So what problem you are facing to do so? – Harun24hr Apr 24 '21 at 11:26
-
Please share a publicly editable [sample spreadsheet](https://webapps.stackexchange.com/a/138383/269219) with realistic-looking data. – doubleunary Apr 24 '21 at 14:37
1 Answers
1
With data in Data!A2:F
and the search keys A1:F1
in the search box sheet, try this:
=iferror(
filter(
Data!A2:F,
not(
mmult(
sign(not(iferror(search(A1:F1, Data!A2:F), A1:F1 = ""))),
transpose(sign(column(A1:F1)))
)
)
),
"(no matching data)"
)

doubleunary
- 13,842
- 3
- 18
- 51