Getting each element(from one column) from excel and entering it to a field in website

how to access each element from a column in an excel sheet and enter those each element to a field in a website step by step?

Read excel file and store output in datatable
Then
Datatable.rows(rownumber).item(columnName).tostring
Use this in set text activity and increment row number

3 Likes

Hey @Pallavi_raj

solution worked for you ?

Hi @Pallavi_raj,

Use read range activity to get the data to Data Table.

Use for each row activity to loop the data.

Then inside row("columnname").Tostring to get the value of the column.
After getting value you can use type into or set text activity to write the data into website.

Regards,
Arivu :slight_smile:

4 Likes

Thank yu it worked!

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.