我正在使用LoadFromArrays
ws.Cells[i, j].Style.Numberformat.Format = "0";
创建电子表格
数组的第一个条目是标题,其他条目可能是数字,文本或日期(但列表中的每个数组都相同)。
生成的Excel工作表有绿色三角形警告,表示数字的格式为文本。
我遍历所有单元格并将其格式设置为数字,如Format Cell...
然而,问题仍然存在,我仍然看到绿色警告,即使我在查看"/data/2014/file300.data.20141231.MC.0930.vgf.img"
对话框时将数字格式设置为数字。
我有什么选择?我可以更多地了解每列中的类型,但是如何设置列标题?
有比EPPlus更好的解决方案吗?或者在下载之前我可以对电子表格进行更多的后期处理?
答案 0 :(得分:12)
由于您使用的是对象数组,因此它们可以包含看起来像数字的数字和字符串,您必须遍历每个对象并确定其类型:
[TestMethod]
public void Object_Type_Write_Test()
{
//http://stackoverflow.com/questions/31537981/using-epplus-how-can-i-generate-a-spreadsheet-where-numbers-are-numbers-not-text
var existingFile = new FileInfo(@"c:\temp\temp.xlsx");
if (existingFile.Exists)
existingFile.Delete();
//Some data
var list = new List<Object[]>
{
new object[]
{
"111.11",
111.11,
DateTime.Now
}
};
using (var package = new ExcelPackage(existingFile))
{
var ws = package.Workbook.Worksheets.Add("Sheet1");
ws.Cells[1, 1, 2, 2].Style.Numberformat.Format = "0";
ws.Cells[1, 3, 2, 3].Style.Numberformat.Format = "[$-F400]h:mm:ss\\ AM/PM";
//This will cause numbers in string to be stored as string in excel regardless of cell format
ws.Cells["A1"].LoadFromArrays(list);
//Have to go through the objects to deal with numbers as strings
for (var i = 0; i < list.Count; i++)
{
for (var j = 0; j < list[i].Count(); j++)
{
if (list[i][j] is string)
ws.Cells[i + 2, j + 1].Value = Double.Parse((string) list[i][j]);
else if (list[i][j] is double)
ws.Cells[i + 2, j + 1].Value = (double)list[i][j];
else
ws.Cells[i + 2, j + 1].Value = list[i][j];
}
}
package.Save();
}
}
使用上面的内容,您可以看到下面的图像作为输出注意左上角的单元格带有绿色箭头,因为它是由LoadFromArray
写的字符串,看起来像一个数字:
答案 1 :(得分:1)
我根据EPPlus LoadFormulasFromArray
创建了一个扩展方法LoadFromArray
。该方法假定列表中的所有对象都被视为公式(而不是LoadFromArray
)。总体而言,Value
和Formula
属性都采用string
而非特定类型。我认为这是一个错误,因为没有办法区分字符串是Text
还是Formula
。实现Formula
类型将启用重载和类型检查,从而可以始终做正确的事情。
// usage: ws.Cells[2,2].LoadFormulasFromArrays(MyListOfObjectArrays)
public static class EppPlusExtensions
{
public static ExcelRangeBase LoadFormulasFromArrays(this ExcelRange Cells, IEnumerable<object[]> Data)
{
//thanx to Abdullin for the code contribution
ExcelWorksheet _worksheet = Cells.Worksheet;
int _fromRow = Cells.Start.Row;
int _fromCol = Cells.Start.Column;
if (Data == null) throw new ArgumentNullException("data");
int column = _fromCol, row = _fromRow;
foreach (var rowData in Data)
{
column = _fromCol;
foreach (var cellData in rowData)
{
Cells[row, column].Formula = cellData.ToString();
column += 1;
}
row += 1;
}
return Cells[_fromRow, _fromCol, row - 1, column - 1];
}
}
答案 2 :(得分:0)
诀窍是不要将数字作为“原始对象”传递给EPPlus,而应将其正确转换。
这就是我用EPPlus制作的从DataTable到Excel的导出方法的实现方式:
if (dc.DataType == typeof(int)) ws.SetValue(row, col, !r.IsNull(dc) ? (int)r[dc] : (int?)null);
else if (dc.DataType == typeof(decimal)) ws.SetValue(row, col, !r.IsNull(dc) ? (decimal)r[dc] : (decimal?)null);
else if (dc.DataType == typeof(double)) ws.SetValue(row, col, !r.IsNull(dc) ? (double)r[dc] : (double?)null);
else if (dc.DataType == typeof(float)) ws.SetValue(row, col, !r.IsNull(dc) ? (float)r[dc] : (float?)null);
else if (dc.DataType == typeof(string)) ws.SetValue(row, col, !r.IsNull(dc) ? (string)r[dc] : null);
else if (dc.DataType == typeof(DateTime))
{
if (!r.IsNull(dc))
{
ws.SetValue(row, col, (DateTime)r[dc]);
// Change the following line if you need a different DateTime format
var dtFormat = "dd/MM/yyyy";
ws.Cells[row, col].Style.Numberformat.Format = dtFormat;
}
else ws.SetValue(row, col, null);
}
重要:值得注意的是DateTime
值将需要更多的工作才能正确处理,因为我们希望以某种方式对其进行格式化,并且可以说支持NULL值在该列中:以上方法完全满足了这两个要求。
我在this post on my blog中发布了完整的代码示例(使用EPPlus的DataTable到Excel文件)。