作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我们正在使用 ClosedXML 将数据表对象转换为 Excel 电子表格以呈现给用户。 DataTable 对象的构建只需将所有 db 值(来自 NHibernate)分配给字符串,然后像下面这样格式化它们:
//formatting
EstimatedCost = Currency.SafeToString(Currency.Create(n.EstimatedCost)),
然后我们将列类型设置为属性类型,即在所有情况下均为 String。
输出 Excel 工作表中发生了什么,因为该列设置为货币但数字作为文本警告,然后它不会正确排序。
我的问题是,由于我们将所有数据构建到 DataTable 中,所以我没有机会正确修饰 ClosedXML 列。有没有我没有想到的快速方法?
public const string ExcelDataType = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml";
public static MemoryStream GenerateExcelFileFromData(IEnumerable<KeyValuePair<string, DataTable>> tabs, int colWidth = 100)
{
var workbook = new XLWorkbook { ColumnWidth = colWidth };
foreach (var enumerable in tabs)
{
workbook.Worksheets.Add(enumerable.Value, enumerable.Key);
}
...
public static DataTable ConvertToDataTable<T>(IEnumerable<T> varlist, List<string> excludedColumns, bool titleizeColumn = false)
{
var dtReturn = new DataTable();
// column names
PropertyInfo[] oProps = null;
if (varlist == null) return dtReturn;
foreach (T rec in varlist)
{
// Use reflection to get property names, to create table, Only first time, others will follow
if (oProps == null)
{
oProps = rec.GetType().GetProperties();
foreach (PropertyInfo pi in oProps)
{
if (excludedColumns.Contains(pi.Name))
{
continue;
}
var colType = pi.PropertyType;
dtReturn.Columns.Add(new DataColumn(GetColumnName(pi, titleizeColumn), colType));
}
}
DataRow dr = dtReturn.NewRow();
foreach (var pi in oProps.Where(pi => !excludedColumns.Contains(pi.Name)))
{
try
{
dr[GetColumnName(pi, titleizeColumn)] = pi.GetValue(rec, null) ?? DBNull.Value;
}
catch (ArgumentException)
{
dr[GetColumnName(pi, titleizeColumn)] = DBNull.Value;
}
}
dtReturn.Rows.Add(dr);
}
return dtReturn;
最佳答案
您可以这样格式化您的货币值:
worksheet.Cell(rowIndex, columnIndex).Style.NumberFormat.Format = "$0.00";
worksheet.Cell(rowIndex, columnIndex).DataType = XLCellValues.Number; // Use XLDataType.Number in 2018 and after
关于c# - 如何将 ClosedXML 中的货币格式化为数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30380218/
我是一名优秀的程序员,十分优秀!