vba run a macro from another workbook

sr4747

New Member
Joined
Apr 17, 2018
Messages
6
Hi. I've been looking for a solution for at least an hour. I have this code:

Code:
Private Sub EXPORTER_Click()
    
    If ActiveSheet.Name = "MODULES" Then
            Application.Run ActiveWorkbook.Name & "!QUESTION_EXPORTER_VERS_TECHNIQUE_MODULE"
    ElseIf ActiveSheet.Name = "ACCESSOIRES" Then
            Application.Run ActiveWorkbook.Name & "!QUESTION_EXPORTER_VERS_TECHNIQUE_ACCESSOIRE"
    End If
    
    Unload Me
       
End Sub

The fact is, the macro is always in a different workbook, which is always name with 5 numbers, for example 36916. But, in some times, we must use the same number several times so we add for example -A. We I run the macro and the workbook name is just 36916, everything works fine. But when the workbook name is 36916-A, it says the macro cannot be run.

Someone can help me ? thanks!!

Steeven
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.

Forum statistics

Threads
1,221,527
Messages
6,160,342
Members
451,638
Latest member
MyFlower

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