IF forumla to standardise text

  • Thread starter Thread starter GD
  • Start date Start date
G

GD

I'm looking for a formula to do the following,,

Look at column A (cells 1-100) which is populated with text, with 3 or 4
variances of the same output, e.g "ceilings" "cielings" "clings" - i'd need
the formula to take this range into account and pick up all results with
"ings" in it, and report standard result of "Result Ceilings" for each cell
in A1-A100 with any text arrangement of "ings" in it

Can this be done?
 
Try this in B1:

=IF(ISNUMBER(SEARCH("ings",A1)),"Result Ceilings",A1)

then copy down to B100.

Hope this helps.

Pete
 

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