10-05-2011, 12:03 AM
I need to pull data starting at different points of a table, but in my code I still need to start at 1 to my total count.
Can I run two Foor loops at one time?
Can I run two Foor loops at one time?
Code:
Start = 20
End = 29
TotCount = End - Start + 1
For Run = Start to End And Count = 1 to TotCount
...
Next