View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Norman Jones Norman Jones is offline
external usenet poster
 
Posts: 5,302
Default Processing non-contiguous row selections

Hi Alan,

Or perhaps just a single loop


Yes, as acknowledged in my second post:

"It is unnecessary to iterate through the areas so, more simply: ...."


---
Regards,
Norman



"Alan Beban" wrote in message
...
Or perhaps just a single loop:

For Each iCell in Rng
. . .

Alan Beban