Reputation: 46322
I got the OpenXML SDK to work with creating a .xlsx file. But is there anyway for it to create a xls file. Meaning, when it ask to open up an excel file, it only accepted .xlsx files and not .xls file.
Upvotes: 2
Views: 1429
Reputation: 3320
The .xls (or BIFF) format is a proprietary binary format. The OpenXML format is just that...XML. The format was designed to be open for anyone to read, view, or modify the file contents without requiring Excel on the computer. To my knowledge, you cannot directly create BIFF-format Excel files using the OpenXML SDK.
Upvotes: 2