harishnv has asked for the wisdom of the Perl Monks concerning the following question:

Hi, I have several sheet in one .xls file. i want to delete a particular column in all the sheets. how to do?

Replies are listed 'Best First'.
Re: Deleting entire column in an excel
by Corion (Patriarch) on Mar 11, 2018 at 10:10 UTC

      I have asked in that question but didn't get an answer. shifting the table i could do. I'm not using Win32::OLE.

        Win32::OLE would be the best way to do this. You could use Spreadsheet::ParseExcel::SaveParser but be aware of limitations.

        You can only rewrite the features that Spreadsheet::WriteExcel supports so macros, graphs and some other features in the original Excel file will be lost. Also, formulas aren't rewritten, only the result of a formula is written.
        poj