Micro Focus QTP (UFT) Forums

Full Version: Two For loops at one time
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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?

Code:
Start = 20
End = 29
TotCount = End - Start + 1

For Run = Start to End And Count = 1 to TotCount
...
Next
Can you please make it more elaborate?