hello connecion ,
i want to use clear sheet but i dont have excel in my machine
-
Clear Range - This activity allows you to clear the data from a specified sheet, range, or table. You can use it with an Excel file selected for a parent
-
You can also try with Invoke VBA activity - This method allows you to execute custom VBA code to clear an excel sheet using macros.
dim ws as worksheet
Set ws = Sheets ("Sheet1")
ws.Cells.Clear
Regards
Gokul
in that way excell need to install or not and where to add the expression
You need to install the MS Excel in your PC. And you this below expression in the Invoke VBA activity
Hi @Shubham_Bidwai ,
Could you Check the below post :
Maybe using workbook activities also we will be able to achieve your required output.
Let us know if this post was not helpful.
You can use workbook write range with empty data and uncheck headers option so that all the data from excel will be removed
cheers
You have to initialize the datatable …use a build datatable and just add one column…dont add any data…
Cheers
Yes this how you have to do…Makesure you remove one blank row as well
Or you can have it like that and run it…Ideally it should clear
cheers
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.