how to write screen scrapping text to excel
@Relangi_Siva Use write range workbook activity and pass the scrapped data as a data table
but it stores in text output
1.Build datatable and add the text using add data row activity
2.Write it in excel
Hello @Relangi_Siva
Use write cell activity to add the specific text in a excel as a string.
Hello @Relangi_Siva
Once you scrap the data then you can convert that to datatable format using Generate Datatable or Text to Column activity. Then write that to Excel using Write Rane activity.
Thanks