Loading suggested videos
Ctrl + T
, then click OK
to confirm.Insert
, and choose the Text Box
under ActiveX Controls
.Text Box
anywhere on the sheet — remember the cell it's placed on (e.g., F4
).Text Box
and choose Properties
. In the LinkedCell
field, type the reference of the linked cell (e.g., F4
), then close the Properties window.Design Mode
.=FILTER(MyTable, ISNUMBER(SEARCH(F4, MyTable[FirstColumn])), "NOTFOUND")
Result: The table will dynamically display rows that match the search term you type in the text box.
Tip: Make sure to replace MyTable
, FirstColumn
, and F4
with your actual table name, search column, and linked cell reference.
Your feedback helps us improve our content.