View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Martin[_13_] Martin[_13_] is offline
external usenet poster
 
Posts: 10
Default run a macro from a cell reference

hello, try to rephrase like this
Sub CallHello(
Dim MacroToRun As Varian

MacroToRun = ThisWorkbook.Sheets("Sheet1").Range("A1"
Run MacroToRu

End Su

Sub Hello(
MsgBox "Hello
End Su

regard
Martin