使用数字格式将数据表导出到Excel工作表

时间:2015-02-24 15:35:59

标签: c# excel datatable export-to-excel

我需要导出数据集:

DataSet ds = new DataSet("tabless");
ds.Tables.Add(table01);
ds.Tables.Add(table02);
ds.Tables.Add(table03);

它包含3个数据表,每个数据表都是:

table01.Columns.Add("Branch",typeof(string));
table01.Columns.Add("Today", typeof(double));
table01.Columns.Add("MTD",typeof(double));
table01.Columns.Add("LM",typeof(double));
table01.Columns.Add("Differ",typeof(double),"LM-MTD");
table01.Columns.Add("YTD",typeof(double)); 

所以我需要将它们导出到带有数字格式和逗号分隔符的Excel工作表 就像当值= -200000将是(200,000)红色并且值300000将是300,000并将其应用于工作表中的每个表。 有关详细信息,请查看以下照片:

Screenshot http://postimg.org/image/lj55lz6ib/

1 个答案:

答案 0 :(得分:0)

您可以使用NumberingFormat

        //Create a NumberingFormat 
        NumberingFormat numForm2decim = new NumberingFormat();
        numForm2decim.NumberFormatId = 1u;
        numForm2decim.FormatCode = StringValue.FromString("0.00");  

        //Use it in a CellFormat
        CellFormat cellformatNumber2Decim = new CellFormat();            
        cellformatNumber2Decim.NumberFormatId = numForm2decim.NumberFormatId;
        cellformatNumber2Decim.ApplyNumberFormat = true;

        //And apply the cellFormat to your Cell throw the StyleIndex Property