tags:

views:

34

answers:

2

I have to delete a line which contain zero in two columns. How do I do that?

+2  A: 

No, but I can point you in the right direction.

The Win32::OLE module can help with scripting Excel and other Windows apps in Perl. I'm assuming you have Excel installed.

Powertieke
A: 

You can also use CPAN modules Spreadsheet::WriteExcel and Spreadsheet::ParseExcel Perl modules to manipulate excel.

ppant