up vote 2 down vote favorite
1
share [g+] share [fb]

I have a Jasper report that is successfully being exported to Excel, however all numeric columns (currently of type java.math.BigDecimal) appear in Excel as type "General". This makes it impossible to do numeric operations on the column (such as adding extra 0's) - even if you first convert the format of the cell to be a number. I have tried using different java types for the column but to no avail.

Does anyone know of any way to specify in Jasper that numeric cells should be given a numeric type in Excel?

link|improve this question
feedback

1 Answer

It turns out you need to set the following parameter on the JExcelApi Exporter

JExcelApiExporterParameter.IS_DETECT_CELL_TYPE

to be true.

link|improve this answer
Thanks for updating us with the solution you found. Very helpful. – Jamie Love Aug 19 '09 at 0:11
feedback

Your Answer

 
or
required, but never shown