View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Alan Beban[_2_] Alan Beban[_2_] is offline
external usenet poster
 
Posts: 783
Default Is there an easier way?

Bob Phillips wrote:

For Each Cell in Un
ion(range("G11:H125"),range("I11:K125"),range("L11 :N125"))

This isn't any different from

For Each Cell in Range("G11:N125")

and it assumes that the code is the same for of the three ranges.

Alan Beban