in reply to Re: CONVERTING CSV TO XLS
in thread CONVERTING CSV TO XLS

Install Text::CSV_XS, from a command prompt:

cpan Text::CSV_XS

Install other modules required by the csv2xls tool:

cpan Date::Calc cpan Spreadsheet::WriteExcel

When you run csv2xls without any arguments it'll display the usage information.

Replies are listed 'Best First'.
Re^3: CONVERTING CSV TO XLS
by mayanks94 (Initiate) on May 26, 2014 at 09:28 UTC
    Thanks! Is there any way i could.. instead of going till the end of the tabfile (while (<TABFILE>)) go till a variable which has initial value of lets say 10 and the in the next iteration(i increment that variable by 10) so my file now is read from 10 to 20... then 20-30 and so on and so forth ? if such a method is possible i believe my code would work ! the question is.. is it possible ?