Filtering (I'm guessing)

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Anybody know how I would extract Excel cells that contain a specific item of
information?

For example: I would like to extract the cells below that contain the word
"dog":
Cell B1 --> cat, dog, fish
Cell B2 --> cat, fish, cat
Cell B3 --> dog, fish, cat
Cell B4 --> fish, dog, fish
Cell B5 --> cat, cat, fish

Is there a comand that would extract cells B1, B3, B4 that contain the word
"dog"?

Thanks, Mike
 
Depending on what you mean with "Extract". This formula in column C will
show a different value if there is a dog in column B or not:
=IF(ISERROR(FIND("dog",B1)),"No dog","Dog found")
Is this what you are looking for?
Miguel.
 
Select your column of data. From the Data Menu, select Filter, then
AutoFilter.

You should now see a dropdown arrow in the header row of your column.

Click the arrow, then select "Custom" from the list. Change the selection
to "Contains" and then type in "dog".

HTH,
Elkar
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top