How to get data for eachrow from data scrapping table

Hello,

I have scrapped data from webpage using data scrapping activity and saved in ExtractDataTable variable.
i have created 2 columns with name “firstname” and “lastname”.
how can i access each row of data table.
help me on same.

Hi @Mathkar_kunal

You can use For Each Row in Data Table activty like below:

Regards.

Hi @Mathkar_kunal,

  • Add a For Each Row activity to your workflow.
  • Set the DataTable property to ExtractDataTable.
  • Inside the Loop :
    Use the row variable (provided by the For Each Row activity) to access the data of the current row.
  • You can retrieve the values of specific columns using:
    row(“firstname”).ToString
    row(“lastname”).ToString

Regards,
Sneha

@Mathkar_kunal,

Use Activities - For Each Row in Data Table for this.