View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
Mike Mike is offline
external usenet poster
 
Posts: 3,101
Default Another replace question

Thanks Toppers!!!!

"Toppers" wrote:

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