Private Sub CommandButton1_Click()
Dim s As String
s = TextBox1.Text
Run s 'calls any Macro previoulsy set up (in Module1) with this name
End Sub
Have considered maybe placing a Commandbutton under your textbox1 with the Caption Run Macro
Code:Private Sub CommandButton1_Click() Dim s As String s = TextBox1.Text Run s 'calls any Macro previoulsy set up (in Module1) with this name End Sub