PraveenMenon
Programmer
if you are using a nested for loop, we usually do this
'======================
For i=0 to 20
For j=0 to 20
Debug.Print i,j
Next j
Next i
'======================
we can also do this
For i=0 to 20
For j=0 to 20
Debug.Print i,j
Next j,i
'======================
Is it new? let me know Pls.
All the Best
Praveen Menon
pcmin@rediffmail.com
'======================
For i=0 to 20
For j=0 to 20
Debug.Print i,j
Next j
Next i
'======================
we can also do this
For i=0 to 20
For j=0 to 20
Debug.Print i,j
Next j,i
'======================
Is it new? let me know Pls.
All the Best
Praveen Menon
pcmin@rediffmail.com