Click here to Skip to main content
15,860,859 members
Articles / Desktop Programming / MFC
Article

Saving Excel 2.1 Workbook

Rate me:
Please Sign up or sign in to vote.
4.93/5 (56 votes)
12 Sep 20023 min read 407.2K   7.7K   112   129
Classes used to save data in Excel 2.1 Workbook format

Sample Image

Introduction

Recently I worked on a project that required exporting some reports containing various file statistics. The goal was having one format that would look good immediately and one easy accessible format for the user to import and build custom reports. For the first export type, plain HTML was used. But for importing, HTML is not really easy to use, so Excel file creation seemed a good choice.

Requirements

Since the Excel exported file is just for the user to have easy access to data, only a small part of the Excel file format features were needed. Also, there was no guarantee that Excel would even be installed on the computer where the reports are generated and since a port to Linux was imminent, it would be nice for the class to be platform independent. The goal was to be able to write something as this:

CMiniExcel miniexcel;

miniexcel(0,0) = "FileName";
miniexcel(0,1) = "Size (MB)";

miniexcel(1,0) = "c:\\bigfile.txt";
miniexcel(1,1) = 123.45;

miniexcel.SaveAs("Report.xls")

There are no real memory constraints, since Excel cannot handle over ~65K rows anyway. (Actually we also needed a single big report with more that 65K rows, and we had to save it as a "Comma separated values" file). So the whole excel worksheet could be kept in memory.

Excel file format

After a little bit of searching on the net, I decided on the Excel 2.1 Workbook format (description of the format found here). Even though this format is old, it can be imported by Excel or by other programs and it seemed suitable for our simple needs.

From the documentation of the Excel 2.1 format it turns out that an excel document is stored using a format called Binary File Format (BIFF). This format is a sequence of BIFF records, each record containing a certain property/value of the workgroup. Each BIFF record starts with a 2 byte number containing it's type and another 2 bytes for the size of the record. After this header, record-specific data will follow:

XX XX

 XX XX

 ....

Type  Length  Specific Data

From the several record types needed, only a few were really important for simple excel exporting. BOF and EOF records were unavoidable and also text strings (LABEL record) and numbers (NUMBER record) needed to be saved.

Implementation

First of all, to take care of the platform independence and also to make life easier when saving the BIFF records, I implemented a writer class (CLittleEndianWriter) that should be able to write 1 byte, 2 byte and 4 byte values in little endian byte order. Also, it needed to be able to save double values in IEEE format, since this is the format used to store real numbers (excel has a BIFF record fr storing a 16 bit unsigned integer, but it is not enough):

class LittleEndianWriter{
  ...
public:
  ...
  void Write1 (char v);
  void Write2 (int v);
  void Write4 (long v);
  void WriteFloatIEEE (float v);
  void WriteDoubleIEEE (double v); 
};

After this, it also seems pretty clear that since every single record is saved in a biff file format, it would be nice have a abstract BIFFRecord class and that every single record should be derived from it.

class BIFFRecord{
  ...

  /* Write a BIFF header for the opcode nRecno of length nRecLen */
  void Write (LittleEndianWriter *pWriter, int nRecNo, int nRecLen);

public:

  /* We should be able to write every type of BIFF records */
  virtual void Write (LittleEndianWriter *pWriter) = 0; 
}; 

This being done, implementing excel file saving is only adding the required BIFF records. I added in this demo project BOF, EOF, NUMBER and LABEL (others should be easy to add). We also need a generic container class, so that Excel file creation is easy. The container class is needed because BIFF records have to be in a specific order in the XLS file and it's nice if the container class does this for us:

class CMiniExcel{
  ...
public:
  ... 
  /* Access the columns in the excel document */
  ExcelCell &operator() (unsigned row, unsigned column);

  /* Write into a file. */
  void Write (FILE *dest);
};

Note that the operator () returns an ExcelCell. This is just a simple container for either numbers or strings and it makes like a lot easier when coding by not having to worry about cell types in the Excel Workbook.

Final notes

This is by no means a complete project. The saving is basic and error checking is almost none existing. Adding other BIFF records to the generic format should be pretty easy and if somebody finds it useful, I might add a few more into this demo source code.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Canada Canada
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionUpdate and not discard Pin
Member 107959805-May-14 6:29
Member 107959805-May-14 6:29 
GeneralTanks Pin
max096429-Jan-14 6:36
max096429-Jan-14 6:36 
GeneralMy vote of 5 Pin
chang 210-May-13 17:23
chang 210-May-13 17:23 
QuestionBOLD and COLOR Pin
allegroaallegroa28-Oct-11 4:01
allegroaallegroa28-Oct-11 4:01 
QuestionHow to save Date and Time Pin
abhirajundefined22-Feb-10 22:58
abhirajundefined22-Feb-10 22:58 
News[ANN] Libexcel library for writing xls-files Pin
Dmytro Skrypnyk20-Jul-08 5:16
Dmytro Skrypnyk20-Jul-08 5:16 
GeneralRe: [ANN] Libexcel library for writing xls-files Pin
guipborges29-Nov-11 7:38
guipborges29-Nov-11 7:38 
GeneralMore than one time write Pin
simcon9425-Jun-08 21:11
simcon9425-Jun-08 21:11 
GeneralSystem Hang(quite urgent).... Pin
mk200627-Jun-07 21:43
mk200627-Jun-07 21:43 
QuestionHow write a formulate ? Pin
CG2i0325-May-07 23:15
CG2i0325-May-07 23:15 
General.csv file ??? [modified] Pin
mkmut25-Apr-07 20:26
mkmut25-Apr-07 20:26 
GeneralRe: .csv file ??? Pin
mkmut25-Apr-07 20:38
mkmut25-Apr-07 20:38 
QuestionHow should I save a picture into this? Pin
suvendu Laha6-Dec-06 11:48
suvendu Laha6-Dec-06 11:48 
Generalproblem in strdup (); function Pin
Glamar22-Nov-06 19:37
Glamar22-Nov-06 19:37 
GeneralRe: problem in strdup (); function Pin
Glamar26-Nov-06 19:40
Glamar26-Nov-06 19:40 
GeneralThank you very much Andrey! Pin
Lac_equinu25-Jul-06 14:27
Lac_equinu25-Jul-06 14:27 
GeneralMerger Cell Pin
mbcvamsidhar6-Jun-06 5:28
mbcvamsidhar6-Jun-06 5:28 
QuestionHow to run it in VC environment Pin
thomsy23-May-06 20:25
thomsy23-May-06 20:25 
AnswerRe: How to run it in VC environment Pin
emranallan22-Sep-06 22:05
emranallan22-Sep-06 22:05 
AnswerRe: How to run it in VC environment Pin
davemaster9924-Nov-06 7:05
davemaster9924-Nov-06 7:05 
QuestionHow to Run In Visual C++6? Pin
Chhoto Bou15-May-06 9:27
Chhoto Bou15-May-06 9:27 
AnswerRe: How to Run In Visual C++6? Pin
Andrei Litvin6-Jul-06 13:23
Andrei Litvin6-Jul-06 13:23 
GeneralRe: How to Run In Visual C++6? Pin
emranallan24-Sep-06 1:04
emranallan24-Sep-06 1:04 
QuestionHow to process merged cell? Pin
wangqinyincoder27-Mar-06 16:34
wangqinyincoder27-Mar-06 16:34 
GeneralStringsize. Pin
PeterHarrie27-Mar-06 2:09
PeterHarrie27-Mar-06 2:09 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.