I'm trying write a simple perl script that reads some fields from a password protected XSLX file.
I've looked at Spreadsheet::XLSX and SimpleXlsx but neither seem to support password protected files.
Any idea how this can be done?
Using Win32::OLE This is done like so:
my $Book =
$Excel->Workbooks->Open( { FileName => $file, Password => $password } );