6

我目前正在编写一个应用程序 (C#) 来根据其他报告在 excel 文件中生成报告。

问题是,一旦从某个工作表中获取一个数字并复制到另一个工作表,目标单元格的格式不正确,并且数字无法正确显示。

E.g : 
Number from source : 14.34 
Number on destination : 14.345661

如何格式化目标单元格以强制数字格式与源单元格相同。

谢谢 !

4

2 回答 2

4

excel中给定单元格/范围的格式可以通过代码设置。

public void SetCustomFormat(string format, int r, int c)
{
    ((Excel.Range)xlWks.Cells[r, c]).NumberFormat = format;
}

在您的具体情况下,我相信您需要使用格式“#.00”或“#.##”

于 2012-05-23T13:08:21.513 回答
3

这是我使用的一些代码的片段,向您展示格式化单元格的一般模式。显然,声明了一些变量,但它应该告诉你你需要什么。

sheet.get_Range("A" + CurrentRowIndex.ToString(), ColPrefix + CurrentRowIndex.ToString()).Font.Bold = true;
sheet.get_Range("A" + CurrentRowIndex.ToString(), ColPrefix + CurrentRowIndex.ToString()).Interior.Color = Color.Silver.ToArgb();
sheet.get_Range("A" + CurrentRowIndex.ToString(), ColPrefix + CurrentRowIndex.ToString()).BorderAround(Microsoft.Office.Interop.Excel.XlLineStyle.xlContinuous, Microsoft.Office.Interop.Excel.XlBorderWeight.xlThin, Microsoft.Office.Interop.Excel.XlColorIndex.xlColorIndexAutomatic, null);
sheet.get_Range("A" + CompetencyStartRowIndex.ToString(), ColPrefix + CurrentRowIndex.ToString()).BorderAround(Microsoft.Office.Interop.Excel.XlLineStyle.xlContinuous, Microsoft.Office.Interop.Excel.XlBorderWeight.xlThin, Microsoft.Office.Interop.Excel.XlColorIndex.xlColorIndexAutomatic, null);

第一行,假设 CurrentRowIndex = 1 和 ColPrefix = "B",用结果值替换变量将转换为

sheet.get_Range("A1", "B1").Font.Bold = true;

无论如何,您要设置数字格式。(未来..)

sheet.Cells[Row, Column].NumberFormat = "0.00"
于 2012-05-23T13:05:21.603 回答