I have two Excel files. One "MyMacro.xlsm" file, and a "MyPortfolio.xlsx" file. "MyMacro.xlsm" is designed to make changes to "MyPortfolio.xlsx". I will be adjusting the macro to accept an argument in AA later so I can run it against multiple separate files. But for now I'm just trying to make it run on its own.
When I manually open up the files, the macro works.
When I use Automation Anywhere to open the files, it always fails and and gives this error:
Cannot run the macro 'ConvertTextToNumber'. The macro may not be available in this workbook or all macros may be disabled.
After that error, if I go to the already-opened "MyMacro.xlsm" file and try to run the macro manually, it fails and gives this error:
Run-time error '9': Subscript out of range
If I close out the Excel files and open them up manually, it works again.
So something has to be breaking, caused by AA opening those files. Is there any way to run that macro without AA breaking it? Or am I missing something in how Automation Anywhere works with macros? I assume the sessions aren't recognizing separate open files.
Here are the two macros.
Sub ConvertTextToNumber()
Workbooks("My Portfolio.xlsx").Sheets("Sheet1").Range("A2:A2000").NumberFormat = "General"
End Sub
Sub SortSmallestToLargest()
Workbooks("My Portfolio.xlsx").Sheets("Sheet1").Range("A2:BT2000").Sort Key1:=Workbooks("My Portfolio.xlsx").Sheets("Sheet1").Range("A:A"), Order1:=xlAscending
End Sub