in reply to "write" problem with "Spreadsheet::WriteExcel" Module

Rewrite your code so it works like this
my $foo = Spreadsheet::WriteExcel->new...; writeCell( $foo, 1, 2, "blah");

Replies are listed 'Best First'.
Re^2: "write" problem with "Spreadsheet::WriteExcel" Module
by kiranv (Initiate) on Oct 08, 2013 at 06:50 UTC

    Thank you.. It worked when I created the Object and closed the workbook properly..