如何在 Apache POI 中设置百分比公式?

发布于 2024-10-23 00:18:15 字数 119 浏览 1 评论 0原文

如何在 Apache POI 中设置带有计数百分比值的公式?

它如何才能成为绝对值?

例如,如果它是 -4.00% 那么它会转换为 4.00

How can I set formula with counting percentage value in Apache POI?

And how can it make as a absolute value?

For example, if it is -4.00% then it converted into 4.00

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

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

发布评论

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

评论(1

蓝海 2024-10-30 00:18:16

假设您最初有 2 个带有数字的单元格 A1B1(在我的示例中,这些数字是 2411 和 1333),并说出单元格中的公式

C = A1/B1

尝试此

System.out.println ("formula "+ cell1.getCellFormula());

if(cell1.getCellType() == Cell.CELL_TYPE_FORMULA) {
                CellValue cv = evaluator.evaluate(cell1);
                System.out.println ("cv "+ cv.formatAsString());



            DecimalFormat df = new DecimalFormat("###.##%");
            System.out.println("Formatted as percentage "+df.format(Math.abs(cell1.getNumericCellValue())));



}

输出为

formula A1/B1

cv 1.808702175543886

Formatted as percentage 180.87%

Change A1到负数,这仍然有效。

Assuming you originally have 2 cells A1 and B1 with numbers (in my example, these numbers are 2411 and 1333), and say the formula in cell

C = A1/B1

Try this

System.out.println ("formula "+ cell1.getCellFormula());

if(cell1.getCellType() == Cell.CELL_TYPE_FORMULA) {
                CellValue cv = evaluator.evaluate(cell1);
                System.out.println ("cv "+ cv.formatAsString());



            DecimalFormat df = new DecimalFormat("###.##%");
            System.out.println("Formatted as percentage "+df.format(Math.abs(cell1.getNumericCellValue())));



}

Output is

formula A1/B1

cv 1.808702175543886

Formatted as percentage 180.87%

Change A1 to a negative, and this will still work.

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