标签: c# export-to-excel number-formatting
我需要MSO编号格式,用于从.Net应用程序中将带有3位小数的百分比导出到Excel。
我尝试了下面的代码,但它只输出2位小数。
e.Cell.Style["mso-number-format"] = @"Percent";
有人可以帮忙吗?
感谢。
答案 0 :(得分:1)
找到有用的东西。
e.Cell.Style["mso-number-format"] = @"0\.000%";