http://qs1969.pair.com?node_id=11150962

slick.user has asked for the wisdom of the Perl Monks concerning the following question:

Hi all, I was using PERL Win32 OLE to open multiples csv files and save as 1 Excel file. This was quick and fast.
use Win32::OLE; use Win32::OLE qw(in with); use Win32::OLE::Const 'Microsoft Excel';
I just switch to a new system and I don't have Excel 32-bit on this system (only 64-bit). I cannot use Win32::OLE libraries any more. Is my next bet is to use:
use Text::CSV; use Spreadsheet::WriteExcel;
Open each csv and write to Excel file? Thanks.