Micro Focus QTP (UFT) Forums
Excel Questions - 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: Excel Questions (/Thread-Excel-Questions)

Pages: 1 2


RE: Excel Questions - Anna - 07-11-2008

Does not work. I tried F4, Alt>F4 and CTRL>F4?


RE: Excel Questions - Anna - 07-29-2008

When I do DataTable.SetCurrentRow (2)
it starts from row #2 and then keeps redoing row #2 over and over. I would like to be able to start with any row other then #1 and then keep going. If I start from row #2 then I want it to go to 3-4-5 etc.


RE: Excel Questions - somisays - 07-29-2008

Dear Anna,
Try this....

Code:
For i=2 to datatable.getRowcount
DataTable.SetCurrentRow (i)

Next

Or you can use

Code:
DataTable.SetNextRow



RE: Excel Questions - Anna - 08-19-2008

This is kind of in the same department. I am using a data table with multiple rows. When the test completes I would like it to do something at the end. Right now if I put a command at the end of the test it is executed after EACH row and I odo not want that.