I'm have a hard time getting the account number to display correctly when exporting data from database to an Excel spreadsheet. Please see the attached image.

Excel Export

Under Company Name column "Company Name" and "AMCE" account number are showing up correctly. "Baba Gump" and "Another Name" is not display correctly. Users would have to double in the cell to see the whole account number. I have Googled this issue and none of the solutions that I've tried worked.

link|improve this question

How are you doing the export? With CF9 spreadsheet functions, html (ie psuedo-excel), ... ? – Leigh Aug 3 '10 at 12:47
<cfsetting enablecfoutputonly="Yes"><cfsavecontent variable="sTest"><cfoutput><table><tr><th align="center">ATTUID</th><th>Company Name</th><th align="center">Account Number </th><th align="center">Total Past Due Balance</th><th align="center">Date Sent</th></tr><cfloop query="returnQuery"><tr><td>#attuid#</td><td>#companyname#</td><td>#AccountNum4#‌​</td><td>#totalpastdue#</td><td>#dateformat(posted)# #timeformat(posted, "h:mm tt")#</td> </tr></cfloop></table></cfoutput></cfsavecontent><cfcontent type="application/vnd.msexcel"> – user281867 Aug 3 '10 at 16:16
Here is the output. <cfheader name="Content-Disposition" value="inline; filename=export.xls"><cfoutput>#sTest#</cfoutput> – user281867 Aug 3 '10 at 16:17
feedback

3 Answers

up vote 5 down vote accepted

You can insert an apostrophe ' preceding the account number. This will force excel to treat numeric (any) data as text.

link|improve this answer
Hi buckbova, thank for your response. I'll try your suggestion first thing tomorrow morning. – user281867 Aug 3 '10 at 4:50
It works, thanks for your suggestion Buckbova! – user281867 Aug 3 '10 at 16:29
feedback

If you are exporting html, you could also use the xml mso schema properties to format the number as text, without changing the actual cell value ie adding an apostrophe.

<cfheader name="Content-Disposition" value="inline; filename=someFile.xls"> 
<cfcontent type="application/vnd.ms-excel">
<html xmlns:o="urn:schemas-microsoft-com:office:office"
    xmlns:x="urn:schemas-microsoft-com:office:excel"
    xmlns="http://www.w3.org/TR/REC-html40">
<body>
<table>
 <tr>
  <td style='mso-number-format:"\@";'>510074123456989</td>
 </tr>
</table>
</body>
</html>
link|improve this answer
thanks, this worked for me! :) (and the apostrophe solution didn't) stackoverflow.com/questions/6737548/… – froadie Jul 18 '11 at 19:10
feedback

This usually happens when the column is not wide enough to display the data. Try and make the column wider and see if that corrects the issue.

link|improve this answer
Hi Dave, I'll also try your request tomorrow morning. Thanks for your response! – user281867 Aug 3 '10 at 4:50
Hi Dave, this didn't work for me. Thank for your suggestion. – user281867 Aug 3 '10 at 16:30
feedback

Your Answer

 
or
required, but never shown

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