Hi,
This is my code.
If i print Dresult, it always give first row value why?,
It is not giving the second row value.
My resuls
x=1
Dresult=Din1
X=2
Dresult=Din1[Here I need second row value Din2]
Any help?
Thanks
Uma
This is my code.
Code:
For x = 1 to DataTable.GetRowCount
print x
'I am adding a sheet in my local datatable.
DataTable.AddSheet("DinInfo")
'Importing values from excel sheet,
DataTable.ImportSheet "C:\LCMan.xls","MyLi-DFa","DinInfo"
'I parmeterized the column:
DResut=(DataTable("In_Din","DinInfo"))
print Dresult
Next
If i print Dresult, it always give first row value why?,
It is not giving the second row value.
My resuls
x=1
Dresult=Din1
X=2
Dresult=Din1[Here I need second row value Din2]
Any help?
Thanks
Uma