如何在iReport中设置Excel单元格格式

发布于 2024-11-26 03:33:59 字数 203 浏览 0 评论 0原文

我正在尝试将报告导出为 xls,但是当我打开导出的文件时,我注意到所有单元格格式都是数字,并且所有数据都用 ' 写入,如文本数据(整数字段和双字段也是...),所以我不能在 Excel 中应用 SUM 等任何公式。

如何根据我的 iReport TextField 类表达式保持单元格格式?

我正在使用 iReport 4.0.2。

感谢大家。

I'm trying to export a report as xls, but when i open my exported file i notice that all cell formats are Number and all data are wrote with ' like text data (integer fields and double fields also...) so i cant apply any formula like SUM in Excel.

How can i keep cell format in according to my iReport TextField class expression?

I'm using iReport 4.0.2.

Thanks to all.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

凌乱心跳 2024-12-03 03:33:59

我一直在寻找同样的问题并发现以下内容:

http://jasperreports .sourceforge.net/sample.reference/xlsformula/index.html

您可以在 ireport 中的导出 Excel 设置下将“检测单元格类型”设置为默认 true。

问候

i've been looking for the same problem and found the following:

http://jasperreports.sourceforge.net/sample.reference/xlsformula/index.html

you can set up the "detect cell type" to default true under export excel settings in ireport.

regards

帅冕 2024-12-03 03:33:59

在您的 元素中使用以下内容:

<reportElement x="0" y="0" width="100" height="20" uuid="fb1a31bf-e600-4ed0-8eb1-2e48f82b90ce">
  <property name="net.sf.jasperreports.export.xls.pattern" value="0.00"/>
</reportElement>

其中 value="..." 是您的单元格模式。

In your <textField> element use this:

<reportElement x="0" y="0" width="100" height="20" uuid="fb1a31bf-e600-4ed0-8eb1-2e48f82b90ce">
  <property name="net.sf.jasperreports.export.xls.pattern" value="0.00"/>
</reportElement>

where value="..." is your cell pattern.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文