使用epplus转换Excel单元格为百分比

使用epplus转换Excel单元格为百分比

本文介绍了使用epplus转换Excel单元格为百分比的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想的值转换为2位小数。我使用的 EPPlus
如果值为 66.6666667 ,我想它显示为 66.66%
我试着下面的代码,但它不工作。

I would like to convert the value in to 2 decimal places. I am using EPPlusif the value is 66.6666667 and I would like to show it as 66.66%I tried the following code but its not working.

   foreach (var dc in dateColumns)
   {
       sheet.Cells[2, dc, rowCount + 1, dc].Style.Numberformat.Format = "###,##%";
   }

请帮忙。

推荐答案

我找到了!

我试过

 foreach (var dc in dateColumns)
  {
    sheet.Cells[2, dc, rowCount + 1, dc].Style.Numberformat.Format ="#0\\.00%";
   }

这篇关于使用epplus转换Excel单元格为百分比的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-01 02:00