Hi, i need to call some macros from wsheet.
I need a macro to look in row A sheet1, and to run macros in a specific order.
Ex:
A.....macro 1......Macro 5......Macro 2....Macro 7
Can this be done?
Thanks!
Sub runMacro()
For Each c In Selection
Run c.Value
Next
End Sub
Sub runMacro()
For Each c In Range("A1:A10")
Run c.Value
Next
End Sub