Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i have a column with this data:

IT_AMPH
IT_BARB
IT_BENZ
IT_BUP
SOMA

i want the column next to it to be literarely

=like "*,IT_AMPH,*"
=like "*,IT_BARB,*"
=like "*,IT_BENZ,*"
etc

please note that i want the equal signed to be displayed, exactly as shown above

what would be the formula for this?

share|improve this question

2 Answers

up vote 1 down vote accepted

this should do it..

="=like ""*," & othercolumn & ",*"""
share|improve this answer
you're the man! thanks so much – Артём Царионов Jun 16 '10 at 21:47
="=like ""*," & A1 & ",*"

Excel is smart enough to know that the string you are creating is not itself a formula. Btw, this really belongs on superuser.com instead of stackoverflow.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.