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

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop

Forum statistics

Threads
1,224,823
Messages
6,181,181
Members
453,022
Latest member
Mohamed Magdi Tawfiq Emam

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