H
Howard
If I have a list of ten sub names in a drop down F1, can I make my MySubCaller run the sub I choose in F1?
This little diddy doesn't work and the scant info I can find to do this leads me to think it is a bogus way to manage the running of ten subs from a single on sheet button.
Thanks,
Howard
Option Explicit
Sub MySubCaller()
Dim i As String
i = Range("F1").Value
Application.Run i
End Sub
This little diddy doesn't work and the scant info I can find to do this leads me to think it is a bogus way to manage the running of ten subs from a single on sheet button.
Thanks,
Howard
Option Explicit
Sub MySubCaller()
Dim i As String
i = Range("F1").Value
Application.Run i
End Sub