View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Norman Jones Norman Jones is offline
external usenet poster
 
Posts: 5,302
Default VBE replace with pattern matching?

Hi Bart,

One of the MZ Tools utilities enables a global search and replace across a
selection, a module, a project or all open projects:

http://mztools.com/v3/download.htm


---
Regards,
Norman


"RB Smissaert" wrote in message
...
Is it possible to do a global replace in the whole project
with pattern matching?

For example I have:
If Not strVar = ""

and I would like to replace it with:
If Len(strVar) 0

RBS