Handle Error in Macro from Another Workbook

ivan0313

New Member
Joined
Oct 22, 2020
Messages
1
Office Version
  1. 365
Platform
  1. Windows
I am trying to handle an error in a macro from another workbook, but on error is not working within any error occurring in the macro from another workbook when I use application.run.
Anyone know why it is not working and how to solve this?

VBA Code:
    Set wb = Workbooks.Open(workbookpath)
    
    On Error GoTo Continue
    Run "'" & GetFilenameFromPath(workbookpath) & "'!" & macro_name
   
Continue:
    Debug.Print "Error Number: " & Err.Number
    Debug.Print "Error Source: " & Err.Source
    Debug.Print "Error Description: " & Err.Description
    Debug.Print "Error LastDllError: " & Err.LastDllError
    On Error GoTo 0
    wb.Close False



Another alternative is that I can run the macro from python using xlwings, but I also want to handle the error in python, which is not working as a error message will prompt, preventing the python script from continuing to execute. Maybe there is some way I can prevent the error message dialog from showing up, without changing the target macro vba codes?
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.

Forum statistics

Threads
1,223,885
Messages
6,175,183
Members
452,615
Latest member
bogeys2birdies

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top