View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
RITCHI[_2_] RITCHI[_2_] is offline
external usenet poster
 
Posts: 7
Default Find and Replace

The snippet of code below has worked well for ages but now I have some
cells with hundreds of characters in it,seems to fail. Any ideas/help
would be appreciated.
Thanks


Sub FindReplace()

Cells.Replace What:="$$", Replacement:=" ", LookAt:=xlPart,
SearchOrder _
:=xlByRows, MatchCase:=False, SearchFormat:=False,
ReplaceFormat:=False

End Sub