Sub Name as Variable

vba_monkey

Board Regular
Joined
Dec 18, 2013
Messages
112
Hello,

Does anyone know how to set the sub name as a variable? As in MyVariable = Sub Name.

Thanks
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
Not clear what you're trying to do.

This?

Code:
Sub Main()
    Dim MySub As String
    
    MySub = "DoSomething"
    Application.Run MySub
End Sub

Sub DoSomething()
    MsgBox "Hello"
End Sub

M.
 
Upvote 0
What do you mean do it?

I'm trying to return the current sub name and set it as a variable, I'm sure of any other way to say it.
 
Upvote 0
I meant set the variable to the name you want/need, but i'm not understanding what you are trying to achieve.
Why do you need such variable? How do you intend to use it?

M.
 
Upvote 0

Forum statistics

Threads
1,214,835
Messages
6,121,880
Members
449,057
Latest member
Moo4247

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