Jump to the post that solved this thread.
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Problem with Data Table
#2
Solved: 11 Years, 3 Months, 3 Weeks ago
Hi,
You are getting this error because you are using i in place of sheetid. Since i is changing with every iteration, code is trying to fetch value from a column, in sheet i. You can omit using i and just give only the column name. The best way to do this is:

Code:
CntDtData=DataTable.GetRowCount
For i=1 to CntDtData
    DataTable.SetCurrentRow(i)
    Username1=DataTable.Value("Username")
    Password1=DataTable("Password")
........
........
.....
Next
Reply
Jump to the post that solved this thread.


Messages In This Thread
Problem with Data Table - by Rakesh Sahukari - 10-14-2013, 12:20 PM
RE: Problem with Data Table - by Sandeep81 - 10-24-2013, 05:22 PM
RE: Problem with Data Table - by Rakesh Sahukari - 10-24-2013, 08:42 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  data table use uft_usr 1 2,343 06-29-2016, 05:23 PM
Last Post: Ankesh
  Writing to Run time data table Neetha 5 12,349 08-27-2015, 10:18 AM
Last Post: supputuri
  Retrieving data from web table nsuresh316 1 3,224 03-03-2014, 08:29 AM
Last Post: basanth27
  How to get data from data table in Ascending order dipashri 1 3,832 01-28-2014, 09:54 PM
Last Post: jacosta
  Data Table Query Suma Parimal 4 4,924 01-21-2014, 12:50 PM
Last Post: Suma Parimal

Forum Jump:


Users browsing this thread: 1 Guest(s)