I am trying to execute macro with argument in UiPath. However, looks like couldn’t give any argument. The execute activity was run without error, but no update to the excel. Does anybody has suggestion?
Here is the example I want to play. The macro will clear the specific sheet.
VBA:
Sub Empty_Sheet(ByVal sheetName As String)
Worksheets(sheetName).Cells.Clear
End Sub