in reply to Re: Write to Excel
in thread Write to Excel

In my experience I have not found a module that allows you to open a workbook, add or modify data, and write out to the same file.

If you're on a Windows system that has Excel installed, the Win32::OLE module will allow you to control Excel, which in turn means that you can open an Excel file, make modifications and save the modifications.

However, to do those tasks without directly using Excel, I would agree with you about not being aware of a single module to allow for read and write functionality.

Replies are listed 'Best First'.
Re^3: Write to Excel
by chilledham (Friar) on May 30, 2012 at 17:40 UTC

    Excellent point, thanks! These days I'm working mostly in Linux or OS X; I had completely forgotten about Win32::OLE.