View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Toppers Toppers is offline
external usenet poster
 
Posts: 4,339
Default Another replace question

Try:

=LEFT(A1,FIND("=",A1))&""""&TRIM(MID(A1,FIND("=",A 1)+1,255)) &""""

"Mike" wrote:

Hey guys! Thanks for the help on the last question!

Here is another one.

I have column A with this text:
sometexthere=moretexthere

What I need to do is make it like this with quotes:
sometexthere="moretexthere"

Any way to do this?

Thanks!!!

Mike