I am facing an issue while writing the extracted data into excel. Its taking each cell for each word and overwriting into the same cells for every iteration. I have used the get text activity and generate data table activity and write range activities.
Firstly Generate a DataTable before the loop begins.
Within the loop, use the Add Data Row activity to add each extracted data as a new row to the DataTable.
After the loop completes, use the Write Range activity to write the entire DataTable to the Excel file. This activity will write the DataTable’s data into separate cells in the Excel file.