vote up 3 vote down star
3

I need to achieve the following when outputting HTML to Excel (Response.contentType="application/vnd.ms-excel") :

a) force Excel to consider content of td cells as numbers

b) make the above so that any subsequent user-entered formulas work on these cells (when the spreadsheet is opened that is)

So far I was successful with a) by adding style="vnd.ms-excel.numberformat:0.00" to the td cells in question, the contents of the cells are correctly shown as numbers when I right click on them in the Excel, however the formulas don't work.

If successful, that technique would be quite useful because any web Excel report could be user enhanced with appropriate formulas according to custom requirements. Thanks in advance.

flag

4 Answers

vote up 0 vote down

Here is a list of Excel formats: Styling Excel cells with mso-number-format

link|flag
vote up 0 vote down

UPDATE: You also need to remove non-breaking spaces (nbsp's) from td cells containing numeric or money information to make formulas work on these cells in Excel. So the problem is solved.

link|flag
which answer was the solution for you? (beyond removing the non-breaking spaces) or was that the only issue? – scunliffe Dec 10 '08 at 20:36
vote up 4 vote down

If you add a CSS Class to your page:

.num {
  mso-number-format:General;
}
.date {
  mso-number-format:"Short Date";
}

And slap those classes on your TD's, does it work?

<td class="num">34</td>
<td class="num">17.0</td>
<td class="date">12/17/2008</td> <!-- if you are playing with dates too -->

Update: Additional formatting options from @Aaron.

link|flag
more formatting options: netdominus.co.uk/knowledgebase/mod/… \@ for text came in handy – roman m Mar 31 at 22:16
Link is dead. Try cosicimiento.blogspot.com/2008/11/… instead – Aaron Digulla Jul 22 at 15:33
thanks for the updated link @Aaron Digulla – scunliffe Jul 22 at 17:03
vote up 1 vote down

The best trick is to mock up an Excel spreadsheet with all the colors/(conditional) formats/formulas you require.

Keep it as simple as possible, just the bare minimum rows etc.

Then save the Excel spreadsheet "As Xml Spreadsheet"

Then you have a template to build a spreadsheet via Xml.

I generally clean up styles in the original Xml saved from the Excel workbook. Removing duplicates and renaming them.

Then it is just a matter of populating with whatever datasource you have.

I do not know what environment you are coding to, but in VB.NET with LINQ and Xml Literals, this is a very simple task.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.