Click here to Skip to main content
Click here to Skip to main content

Saving Excel 2.1 Workbook

By , 12 Sep 2002
 

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

About the Author

Andrei Litvin
Web Developer
Canada Canada
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionHow should I save a picture into this? Pinmembersuvendu Laha6-Dec-06 11:48 
Could you please suggest me how to store a picture into xls file format?
 

 
suvendu
Generalproblem in strdup (); function PinmemberGlamar22-Nov-06 19:37 
I have tried the given example but there are 3 error in strdup();
 
Also this function is not defined anywhere in the given file.
 
Please give the solution for this function error.
 
I put command at this 3 error place. but runtime memory exception rised.

GeneralRe: problem in strdup (); function PinmemberGlamar26-Nov-06 19:40 
GeneralThank you very much Andrey! PinmemberLac_equinu25-Jul-06 14:27 
I want to send for you very big respect! Your are very good programmer though I have some errors while embedding your code in MFC project(I had C1010 error...) but any way I'm using your code with big glad!Big Grin | :-D

GeneralMerger Cell Pinmembermbcvamsidhar6-Jun-06 5:28 
Hi,
Is it possible to merge cells from your files?
 
VD
 
Thanks and Rgds,
VamsiDhar.MBC
SoftwareEngineer.
QuestionHow to run it in VC environment Pinmemberthomsy23-May-06 20:25 
Actually i am facing a problem when i run the code in VC++ 6.0,its telling Winmain 16.Can u help me in this?

AnswerRe: How to run it in VC environment Pinmemberemranallan22-Sep-06 22:05 
AnswerRe: How to run it in VC environment Pinmemberdavemaster9924-Nov-06 7:05 
QuestionHow to Run In Visual C++6? PinmemberChhoto Bou15-May-06 9:27 
Hi.
 
Thanks for support. Can u plz feedback to me that how i can run this code under visual C++6?
 
Bye.

AnswerRe: How to Run In Visual C++6? PinmemberAndrei Litvin6-Jul-06 13:23 
GeneralRe: How to Run In Visual C++6? Pinmemberemranallan24-Sep-06 1:04 
QuestionHow to process merged cell? Pinmemberwangqinyincoder27-Mar-06 16:34 
Hello:
Big Grin | :-D
1) Is it has Process "merged cell"( see follow ) Record in Excel 2.1
   Like this:
      A               B            C            D      ...
   ----------------------------------------
1 |   merged cell   |            |            |   ...
   ----------------------------------------
2 |            |            |            |            |   ...
   ----------------------------------------
3      .            .            .            .         ...
.      .            .            .            .         ...
.      .            .            .            .         ...
.      .            .            .            .         ...
 
2) What is mean the "Cell is hidden" bit in "rgbAttr" field ? Is it related to other Record or Bit of other Record?
   Please help me!
GeneralStringsize. PinmemberPeter Hendrix27-Mar-06 2:09 
Hi,
 
Great class.
I noticed that the length of string values is limited to 256 characters.
I have tried extending this value however I cannot get it to work.
 
Could anybody help me on this any help would be greatly appreciated.
 
Regards,
Peter Hendrix.
GeneralRe: Stringsize. PinmemberAndrei Litvin6-Jul-06 13:29 
GeneralTried to compile you code, gives memory exception error Pinmembermawani3112-Jan-06 23:22 
hi,
i tried to compile you code in (Microsoft development environment 2003 version 7.1.3008)
but it is giving me memory exception.
 
it is really helpfull.
i need to create the excel file for report generation.
 
will be thankful to you if you give some more details.
 
thanks in advance
mawani311@rediffmail.com
AnswerRe: Tried to compile you code, gives memory exception error Pinmemberdavemaster9924-Nov-06 7:01 
QuestionChanging Cell to Bold PinmemberKrishna Kumar N22-Sep-05 1:18 
How can i change a particular cell into bold/underline/italic
 
thanx in advance
 
- KK -
Questionhow do I change the cell number format Pinmemberidanmnr@iprimus.com.au7-Aug-05 14:06 
First off - great article.
Second - How do I change a cell's number format from general to 0.00 for example, or 0.000000.
 
Thanks

GeneralCharts PinmemberNinjaNL29-Jun-05 1:18 
Is it possible to extend the code to allow a chart to be created within the excel file.
GeneralChange colour text and background Pinmemberdariusz197913-Jun-05 0:54 
Hi.
 
How can i change colour text and background?
 
And one more - how can i underline text and "do italic" (sorry for my english)?

 
Daro
GeneralAutofilter PinmemberAccessViolation2-Jun-05 5:30 
I have written an Visual C++ Program which creats an Exelfile like this Example. The Program runs under Windows without Office-installation but with "Excel Viewer 2003", to see the result.
It runs perfect.
Now i want to know whether it's possible to set an Autofilter in every Column and how does it function.
 
Does anybody know?
 
Olli

GeneralRe: Autofilter Pinmembervikas chablani18-Sep-07 2:27 
GeneralCreating Excel-File with Autofilter PinmemberAccessViolation2-Jun-05 5:22 
I'm implementing a Program in VisualC++ which creating an excelfile like this example. The Program run without Office installation on Windows.
The build excel-file can be shown in "Excel Viewer 2003".
Till now, everything runs perfect.
 
Now i want to know whether it is possible to set an Autofilter in every Column and how does it function.
 
Anybody know?
 
Olli
GeneralRe: Creating Excel-File with Autofilter Pinmemberwdaliu24-Apr-07 3:02 
Generaladd a few lines of summary before cells Pinsussbangwo12-May-05 14:04 
this code is very useful for my data-report project, thanks !
 
one more question or hope:
I like to add a few lines to summarize the report before cell-columns,
and the lines are not restrained in the first column, such as:
 
[summary lines]
Order Report
number of orders: 34
report period: 4/13/2005 - 5/12/2005
 
[cells start here]
order_id order_time order_item
1 4/16/05 09:00 xxx
2 4/30/05 14:00 xxx
 
Hope you help me on this !!
Thanks !!
Generalappend to an .xls file Pinmemberchenggong12-May-05 5:45 
trying to append the rows to an existing .xls file,
I changed fopen(SAVEPATH,"wb") to fopen(SAVEPATH, "a+b")
in the main.cpp of the demo-code.
After execution, I opend the .xls file and see the only one
new line and in the line only "item1:","item2:","sum=" are recognized.
 
Appreciate your time and help!
GeneralRe: append to an .xls file PinsussAndrei Litvin12-May-05 15:11 
GeneralWell done Andrei! PinsussPerpetuaFX12-Apr-05 9:53 
Thanks for the explination of the Excel file structure as well as the examples they were of great benefit Smile | :) . A note to anyone running .Net 2003, please do not compile with pre-compiled headers or you will have build errors.
 
PerpetuaFX Software Design
GeneralMerging Cells PinmemberUOzkan31-Mar-05 0:18 
Hi there,
 
First of all thanks for those classes, helped me a lot.
What I need is code for merging two or more cells together.
Is there a way to do that? and How?
 
Thank you very much in advance.
 
Ugur
GeneralMerging Cells PinmemberUOzkan31-Mar-05 0:16 
Hi there,
Generala couple of doubts!!! PinmemberPiyush Peshwani15-Dec-04 18:53 
Can anybody guide me on the following:-
 
1. How to merge cells, say (x,y) and (x+1,y) need to be merged.
 
2. I've generated daa in a tabular form. How do we make a boundary for the complete table, which diagonally varies from, lets say, (x1,y1) to (x2, y2)
 
Thanks in advance.
-Piyush
GeneralBUG found with SetFontNum (bit shift incorrect) PinsussAnonymous12-Oct-04 3:52 
Hi, love the code, very easy to use and extend...
 
however, I found a bug with your code - setFontNum and getFontNum should read as follows:
 

void excelValueAttributes::setFontNum (int v)
{
m_nAttr2 &= ~0xC0; /* clear previous value */
m_nAttr2 |= (v & 0x03) << 6; /* set the new value value */
}
 
int excelValueAttributes::getFontNum ()
{
return (m_nAttr2 >> 6) & 0x03;
}

 
Took a little while to track this one down, couldn't understand why my bold text wasn't showing up. Note the different bit shift and mask (the font number goes in bits 6-7 not 5-7).
GeneralRe: BUG found with SetFontNum (bit shift incorrect) Pinmemberchenggong16-May-05 9:20 
GeneralRe: BUG found with SetFontNum (bit shift incorrect) Pinmemberhughesr14-Jun-05 3:00 
GeneralRe: BUG found with SetFontNum (bit shift incorrect) PinsussAnonymous18-Jun-05 19:01 
GeneralRe: BUG found with SetFontNum (bit shift incorrect) Pinmemberlshe7-Dec-05 10:49 
GeneralHi..Do u know How to change Width of Col. PinmemberSumit Kapoor27-Aug-04 0:54 

Hi..
Do u know How to change Width of Col.
 
Nice Code..
Thanks

 
---Sumit Kapoor---
GeneralRe: Hi..Do u know How to change Width of Col. PinsussAnonymous12-Oct-04 3:41 
GeneralRe: Hi..Do u know How to change Width of Col. Pinmemberhughesr12-Oct-04 3:56 
GeneralRe: Hi..Do u know How to change Width of Col. PinmemberMurka1-Feb-05 1:14 
GeneralRe: Hi..Do u know How to change Width of Col. Pinmemberhughesr1-Feb-05 2:00 
GeneralRe: Hi..Do u know How to change Width of Col. PinmemberMurka1-Feb-05 4:02 
GeneralRe: Hi..Do u know How to change Width of Col. PinsussFayezElFar4-Mar-05 9:38 
GeneralRe: Hi..Do u know How to change Width of Col. Pinmemberhughesr4-Mar-05 16:22 
GeneralRe: Hi..Do u know How to change Width of Col. Pinmemberhw7704118-Jun-05 19:16 
GeneralRe: Hi..Do u know How to change Width of Col. Pinmemberahm12332121-Jul-05 4:44 
GeneralRe: Hi..Do u know How to change Width of Col. Pinmemberyshingo8-Mar-06 7:40 
GeneralRe: Hi..Do u know How to change Width of Col. Pinmemberdadatong23-Jul-07 21:02 
GeneralRe: Hi..Do u know How to change Width of Col. Pinmemberlshe7-Dec-05 10:45 
GeneralPlease help! PinmemberPuiu M.17-Aug-04 13:38 
How can I alternate in 2 successive columns cell with format "Text" and "Number"?
I tried to use setFormatNum (int v); but I don't know what is the value for the parameter in this 2 cases...
 
Thak you in advance!

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

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130617.1 | Last Updated 13 Sep 2002
Article Copyright 2002 by Andrei Litvin
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid