View Single Post
  #8   Report Post  
Posted to microsoft.public.excel.programming
Helmut Meukel Helmut Meukel is offline
external usenet poster
 
Posts: 49
Default Replacing spaces with underscore for specific expressions

Sorry,

Replace(CellString, "__", "_")

should have been
CellString = Replace(CellString, "__", "_")

Helmut.