View Single Post
  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Beege Beege is offline
external usenet poster
 
Posts: 66
Default substitute formula = subing something to "

gcelis81 wrote:
I'm writing a subsitute formula and want to replace %20 with "
but when I write =SUBSTITUTE(D3,"%20",""") I get an error and Excel makes me
do =SUBSTITUTE(D3,"%20","""")

Any way around this??

help!


Try =SUBSTITUTE(D3, %20, CHAR(34))

Beege