Extracting specific word in a cell

G

Guest

Column A Column B
Western Europe Europe
Latin America
Western Europe Europe
North America

I'd like to create a formula in column B that would display all Europe only.
Thanks.
 
D

Dave Peterson

One way:

=if(countif(a1,"*europe*")=0,"","Europe")

Another:
=if(iserror(search("europe",a1)),"","Europe")
 

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

Similar Threads


Top