in reply to Re: Excel Button to Run Perlin thread Excel Button to Run Perl
Sub pushbutton() Dim arg String Dim cmd String arg = CStr(Range("A1").Value) cmd = "cmd /k perl -le ""print @ARGV"" " & arg Call Shell(cmd) End Sub [download]