Extract Column Values from DataTable

Hii everyone,

I have a table in uipath which has only one row

If i use datascraping to scrape that data
How do I access the values of rows having Column number 10,11,…

Regards,
Supriya

With Data Scraping you will find an activity ExtractData with Output property generally set to ExtractDataTable.

Then you can reference ExtractDataTable.Columns(index).toString to see the value of the column you want, replacing index with 10 or 11 or what else you need.

Regards,

Maurizio

Hii @MaurizioA

The header is printed now
How to avoid headers in datatable

Thanks and Regards,
Supriya

Can you paste HTML code of your table?

Maurizio

Hii,
How to do that

Regards,
Supriya

If it is a table on a website put here url, elsewhere right click on your browser and click View Source , then select all, copy and paste here.