Excel “datatable1” with two columns and many rows :
Col A…Col B
Name … Paul
Gender …Male
Contact…1234
Excel “datatable2” with two rows and many columns:
Row1/Col A (Name)…Col B(Gender)…Col C(Contact)
Row2/Paul… … … … Male… … . … …1234
I would like to “Read Range” from datatable, “For each Row” then “Anchor base” to “Find Element” and “Type Into” another master file.
Under the “Type into”, for datatable2, I can use row(0/1/2).ToString
If for datatable1 arrangement, how can I read from each rows from the same column?
I tried to use back the same row().tostring but it failed.
within the for each row , you can get the value using the column name or column index, lets say the column name is name and it is the first column in the datatable,
then row(“Name”).ToString or row(1).ToString will retrieve the value
My datatable1 is like below:
Col A/Col B
Name/Paul
Gender/Male
Contact/1234
My Form1 is sth like this:
Address: (empty)
Name: Paul
Contact: (empty)
Gender: Male
I am using “find element” & “type into”. I put row(1).tostring for searching the Name but it filled in my Form1 first cell “Address” with all info; which is incorrect.
Address: Paul Male 1234
Please help.
I want to fill in another form1, find correct description and fill in the blank. The form1 is something like: