in reply to Re^3: Creating Excel Macros from Perl
in thread Creating Excel Macros from Perl

adding the Sub to Codemodule and calling it from perl worked fine {with below code}. How do I call this Sub again from Excel, when i open vb editor I did not see any module with the Sub created from perl. Please help!
my $code = <<'END_CODE'; Sub dosomething(say As String) For Each cell In ActiveSheet.Range("A1:A10") cell.Value = say Next cell End Sub END_CODE my $codemodule = $mod->Codemodule; $codemodule->AddFromString($code); $xlApp->Run( 'dosomething', 'test...' );

Replies are listed 'Best First'.
Re^5: Creating Excel Macros from Perl
by Corion (Patriarch) on Jan 08, 2014 at 12:41 UTC

    Did you save the Excel sheet?

    Maybe the VB editor does not update its view on the defined subroutines and modules and needs to close and reopen the file to see the changes.

      yes, tried reopening. Did not work