which is better (both are large), this:
Code:
For x= 1 To 2
  For y=1 To 30
    blah
  Next
Next
or this
Code:
For y=1 to 30
  For x=1 to 2
    blah
  Next
Next
they both do the process 60 times but is one way better than the other?
thanks
michael