0

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

brian d foy
  • 129,424
  • 31
  • 207
  • 592
stranger
  • 19
  • 1

2 Answers2

3

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.

brian d foy
  • 129,424
  • 31
  • 207
  • 592
Powertieke
  • 2,368
  • 1
  • 14
  • 21
  • Here's a great summary of all the commands to manipulate Excel from perl via Win32:OLE http://stackoverflow.com/questions/27613878/list-of-perl-commands-to-manipulate-windows-excel-with-win32ole-module – Matthew Lock Jan 23 '17 at 07:49
1

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

ppant
  • 752
  • 9
  • 19