how can we retrieve ten rows from the data table using

loop concept?

Answers were Sorted based on User's Feedback



how can we retrieve ten rows from the data table using loop concept?..

Answer / sreeprasad

Assume "Column1" is my column name in the Global Data

table, then use this code:

for i=1 to 10

datatable.setcurrentrow(i)

returnvalue=datatable.value("Column1","Global")

msgbox(returnvalue)

next

Is This Answer Correct ?    1 Yes 1 No

how can we retrieve ten rows from the data table using loop concept?..

Answer / nanda

Hi Sreeprasad..this will take 10 rows..but the loop will
execute no.of times that how many rows in datatable.

If u r using 9.0 or above version..

set app = createobject("quicktest.application")
set qtest = app.test

qtest.settings.run.startiteration = 10
qtest.settings.run.enditeration = 20

this script will execute only 10 rows starts from 10 th row
and ends with 20 th row.

If any queries..

nanda.dreddy@gmail.com

Is This Answer Correct ?    0 Yes 1 No

how can we retrieve ten rows from the data table using loop concept?..

Answer / baba

hello nanda, sreeprasad answer is correct... if you worked
on datatable. you will change settings in test settings in
run tab as run on one iteration only.

then it will take from 1 row to 10 only once.

but he forgot this


Function rcnt(rowcount)

if (rowcount>10) then

for i=1 to 10 step 1

val=datatable.value("column1",dtGlobalSheet)
print "Value of"& i &"row is : "&val
datatable.setnextrow

Next

else

msgbox "rowcount is less than 10, requiement is not _
satisfied"

End If

End Function

rows=datatable.getsheet("Global").getrowcount
msgbox rows

row_cnt=rcnt(rows)
print row_cnt

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More QTP Interview Questions

How do you synchronization point through DP?

0 Answers  


How to handle run time errors?

9 Answers  


how can we do the frame work in qtp

0 Answers   L&T,


what is the main process in QTP?

3 Answers   Ordain Solutions,


How to start recording using quicktest professional (qtp)?

0 Answers  






Could any one tell me "How can i recognize my cursor position using QTP 9.2" Give me a scripts for this

0 Answers   Livetek,


what are the functions availabla in QTP? what are the data types in QTP?

2 Answers   Spry Technologies,


Mention the test steps of qtp.

0 Answers  


what is the extension for QTP files?

11 Answers   AppLabs,


HOW TO DO THE BATCH TESTING USING QTP?

2 Answers   Ordain Solutions,


What is qtpro? What is quick test pro?

0 Answers  


If requirments changed then how we can teach the QTP this is the new requirment

2 Answers   Accenture,


Categories