在带有 POI 的 Excel 单元格中显示 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
完成公式计算步骤后,您将需要搜索 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.