2

我正在使用 c# .net。我正在从头开始创建一个新的 excel 文件。一些单元格包含文本,一些单元格包含数字。如何使用 C# ExcelPackage 将单元格的类型设置为数字?

4

1 回答 1

0

这应该有效:

// Get the entire column you want (in this example column A)
var range = someWorkSheet.get_Range("A:A");  
// Set the format to numbers
range.NumberFormat = "0";

(如果您想将其设置为文本,那么range.NumberFormat = "@";

于 2013-10-16T13:24:12.213 回答