I am trying to pass arguments in Execute macro activity as i have string values in variables.
Its working when i m passing single variable as a argument.
But its not working while i am trying to pass multiple variables as a parameters.
attached activity for multiple arguments is not working.
I am facing a similar issue but that is for a single argument.
Could you tell me how have you passed the argument for the variable existing in the macro?
If possible share the code.
Macro should be as below code and your value from Bot will pass as parameter which we have initialized in Macro(βSub Test(VariableName)β).
Value will be stored in (VariableName) variable.
Sub Test(VariableName)
MsgBox VariableName
End Sub