View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Rick Rothstein \(MVP - VB\)[_2212_] Rick Rothstein \(MVP - VB\)[_2212_] is offline
external usenet poster
 
Posts: 1
Default Jarek, almost there...

For Each Cell In ActiveSheet.Cells

Perhaps using...

For Each Cell In ActiveSheet.UsedRange

instead of...

For Each Cell In ActiveSheet.Cells

would involved processing less cells?

Rick