I’m downloading files from website by using table extraction i selected file and url using Table extraction and that all data save in Excel file so
Whenever I’m running the process so each time new record will buy some some time no record is there but the which data available in Excel sheet getting only that file i don’t want to again n again same file
Use a timestamp to save the file so that the filename would be different always…something like this "Extract" + Now.ToString("MMddyyyyHHmmss") + ".xlsx"
You can as well delete the previous file and recreate new
Use clear sheet activity with range or sheet as Excel.Sheet("Sheetname")
If you are using Excel activities “Use Clear Sheet/Range/Table” activity to clear the sheet. Activities will be Excel Process scope → Use Excel File → Use Clear Sheet/Range/Table
If you are using workbook activities at initial process please read the entire excel using “Read Range Workbook” activity and store it an datatable. then use “Clear Data Table” activity to clear the data in the particular sheet.
Whenever you write to excel if you want to preserve the previous excel as well then instead of writing to same excel always we can make it dynamic by adding timestamp as I have depicted above