0

I've an Excel sheet with almost 30,000 rows and I have a list to be searched within the Excel of size 100 values. I don't want to search manually each time.

How can I perform a search of all these 100 values at a single go?

pnuts
  • 58,317
  • 11
  • 87
  • 139

1 Answers1

0

Assuming your longer list is in ColumnA and your shorter one is a named range My100List, in B1 and copied down to suit:

=IF(ISERROR(MATCH(A1,My100List,0)),"","listed")  

then filter ColumnB to select listed.

Edit re comment:

Select ColumnA and apply a Conditional Formatting formula rule of:

=MATCH(A1,My100List,0)>0  

with fill colour of choice.

pnuts
  • 58,317
  • 11
  • 87
  • 139