在带有 POI 的 Excel 单元格中显示 0 而不是错误值

发布于 2024-10-28 03:26:54 字数 216 浏览 1 评论 0原文

大家好 , 我使用了 POI API 并制作了 Excel 工作表。我已经使用 cell.setCellFormula("...") 从单元格中计算了一些值,例如计算百分比、总和等。

现在,如果除法公式中有像 0 这样的值,那么它会给我单元格值就像#DIV/0! 。我想用 n/a 代替 #DIV/0!

有什么建议如何实现这一目标?

HI all ,
I have used a POI API and make excel sheet. I have calculated some value from cell with cell.setCellFormula("...") like calculating percentage , sum, etc.

Now if there is value like 0 in division formula then it will give me cell value like #DIV/0! . I want to replace that with n/a instead of #DIV/0!

Any suggestions how to achieve this?

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

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

发布评论

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

评论(1

ㄟ。诗瑗 2024-11-04 03:26:54

完成公式计算步骤后,您将需要搜索 CELL_TYPE_ERROR 或 CELL_TYPE_FORMULA 类型的单元格(带有错误集)。当找到错误时,您可以调用 getErrorCellValue() 来获取错误类型。如果您想要替换它(例如 FormulaError.DIV0),则只需调用 cell.setCellValue("n/a") 将其更改为其中包含 n/a 的文本单元格。

After you've done the formula evaluation step, you'll want to search for cells of type CELL_TYPE_ERROR or CELL_TYPE_FORMULA (with an error set). When you find one, you can call getErrorCellValue() to get the error type. If it's one that you want to replace (eg FormulaError.DIV0) then simply call cell.setCellValue("n/a") to change it to a text cell with n/a in it.

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