2

I need to parse some information from a series of .xlsb files. I have used perl to parse ".xls" or ".xlsx" files, but didn't find any solutions for ".xlsb". Any suggestions? Thanks

Liang
  • 43
  • 1
  • 6

1 Answers1

1

.xslb files are binary excel files, I believe stored in binary format so they can be opened faster(?). I've had good success with the Spreadsheet::Read module, for regular Excel files, but I'm not confident you'll find a way to read a binary file and make any sense of it.

Tim A
  • 811
  • 5
  • 10