I have one excel file and have some data inside
I need to empty data in every fields by specific by sheet name … such as “Sheet1”
so, the result will be good if it like this
Thanks,
I have one excel file and have some data inside
I need to empty data in every fields by specific by sheet name … such as “Sheet1”
so, the result will be good if it like this
Thanks,
Hi @lovepong66
You can try with Delete Range activity
In the Range try with this expression
"A2:"+UiPath.Excel.Helpers.ExcelUtilities.ConvertColumnIndexToColumnLetter(DtRead.Columns.Count)+(DtRead.Rows.Count+1).ToString
Check out this XAML file
DeleteRange.xaml (6.7 KB)
Regards
Gokul
Hello @lovepong66
You can try invoking VBA
dim ws as worksheet
Set ws = Sheets("Sheet1")
ws.Cells.Clear
Thanks,
Prankur
Hello @lovepong66
try this
100% for me Thanks,
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.