Reduce file size and load/save time with .xlsb files
Excel Tip #004 Reduce file size and load/save time with .xlsb files Using .xlsb files can improve performance if your spreadsheet does a lot of number-crunching. Excel has different options to save a file as an excel file - .xls, .xlsx, .xlsm and .xlsb. The .xls file format used by Excel 2003 and earlier is, internally, a "binary interchange file format"(called BIFF with various suffixes, e.g. BIFF11). Among its limitations, it can store up to 256 columns and 65536 rows. The .xlsx file format, default in Excel 2007, is really just a ZIP file with a bunch of XML files inside. It supports things like a million rows and multithreading optimizations for cell calculation order. This file type is typically smaller than an .xls file with the same contents and is probably faster to open in Excel 2007. The .xlsm file format is an Excel Macro-Enabled Workbook file. Just like with .xlsx files, Microsoft's .xlsm file format uses XML architecture and ZIP comp...