Insert data to excel

hello
i have a data scraped through a website and stored into a data table.
further more i have used get row item to extract data from specific columns.
i have filtered the column data using if condition.
now i want to write that data into excel row wise.

thanks in advance

@ahmaddaniyal

If you want to write cell by cell then use Write Cell Activity to write into Excel file.

1 Like

@ahmaddaniyal
Use a for each row , pass the datatable were you want to write,
then inside for each row use assign as,
Row(“ColumnName”) = YourData.

1 Like