View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
RB Smissaert RB Smissaert is offline
external usenet poster
 
Posts: 2,452
Default VBE replace with pattern matching?

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