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

++ for explicitly closing, but I guess your second code block should rather read:

testExcel.pl

#!/usr/bin/perl use excelUtil; writeCell(1, 1, "Testing, Row-1, Col-1"); close_workbook;

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

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