Micro Focus QTP (UFT) Forums
Two For loops at one time - Printable Version

+- Micro Focus QTP (UFT) Forums (https://www.learnqtp.com/forums)
+-- Forum: Micro Focus UFT (earlier known as QTP) (https://www.learnqtp.com/forums/Forum-Micro-Focus-UFT-earlier-known-as-QTP)
+--- Forum: UFT / QTP Beginners (https://www.learnqtp.com/forums/Forum-UFT-QTP-Beginners)
+--- Thread: Two For loops at one time (/Thread-Two-For-loops-at-one-time)



Two For loops at one time - mv8167 - 10-05-2011

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



RE: Two For loops at one time - guin.anirban - 10-08-2011

Can you please make it more elaborate?