I am trying to pass values to an XL macro from within UiPath.
Within XL, I managed to pass values from a button to a macro.
This is how I called my macro from the button.
'macroTest("A12")'
I tried this without the single quotes but it did not work. And it did not work without the double quotes around the string.
I tried creating a variable within UiPath like this "'macroTest(" & CHR(34) & "A12" & CHR(34) & " )'"
But I got no luck.
Any ideas would be greatly appreciated.