Help with removing certain strings from cells

  • Thread starter Thread starter sparkroms
  • Start date Start date
S

sparkroms

Hi, I am trying to do my inventory that I got from my supplier and the
format for the item listings is "[brand name] Men's {description}". I
was wondering if you guys could help me find a way to get that "men's"
(or women's or unisex depending on the item) out of each cell and into
a new column so that I could easily integrate a column for gender on my
site. I would really appreciate if you guys can help me out. I dont know
very much excel. I can only use stuff like RIGHT() and LEFT(). But I can
learn very easily. Thanks!
 
Hi!

Try this:

A1 = [brand name] Men's {description}

B1 = formula:

=MID(A1,FIND("]",A1)+2,FIND("{",A1)-1-(FIND("]",A1)+2))

Biff
 
Would using "text to columns" help you (using "space" as delimiter)? This
would push every word into a new column (good if brand name is only one
word). Then you could concatenate back together any multi word titles you
need. Or you could autofilter column for lines containing "men's", write
"men's" in new column, copy down and use find replace to replace " men's" in
the original column with "" (nothing) if you want it removed, repeat for
other groups.
 

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