macro adding
Sub ExistingMacro()
If MsgBox("Run my new macro?", vbYesNo) = vbYes Then NewMacroName
End Sub
Sub NewMacroName()
MsgBox "Hello from NewMacroName"
End Sub
HTH,
Bernie
MS Excel MVP
"Mak" wrote in message
...
I have developed an Excel file with macro, which is passed to user. I want
to add coding in it by asking user to run another macro (my newly developed
macro). How can I do it?
Thank you very much in advance.
|