带 3 位小数的百分比的 MSO 数字格式
MSO number format for Percent with 3 decimals
我需要 MSO 数字格式,以便从 .Net 应用程序将带 3 位小数的百分比导出到 Excel。
我试过下面的代码,但它只导出 2 位小数。
e.Cell.Style["mso-number-format"] = @"Percent";
有人可以帮忙吗?
谢谢。
找到有用的东西。
e.Cell.Style["mso-number-format"] = @"0\.000%";
谢谢。
我需要 MSO 数字格式,以便从 .Net 应用程序将带 3 位小数的百分比导出到 Excel。
我试过下面的代码,但它只导出 2 位小数。
e.Cell.Style["mso-number-format"] = @"Percent";
有人可以帮忙吗?
谢谢。
找到有用的东西。
e.Cell.Style["mso-number-format"] = @"0\.000%";
谢谢。