Hi,
Please find the below implemenation logic
Thanks,
Venkat.Batchu
Please find the below implemenation logic
Code:
rg=datatable.GetRowCount
ra=datatable.GetSheet(2).GetRowCount
temp=1
For i=1 to rg step 1
msgbox "temp value" &temp
datatable.SetCurrentRow(i)
gvalue=datatable.Value(1,1)
msgbox gvalue
For j=temp to temp+2 step 1
datatable.SetCurrentRow(j)
avalue=datatable.Value(1,2)
msgbox avalue
Next
temp=temp+3
NextThanks,
Venkat.Batchu

