これは、セルをフォーマットするための一般的なパターンを示すために、私が使用しているいくつかのコードからの抜粋です。明らかに、宣言されたいくつかの変数がありますが、それはあなたが必要とするものをあなたに示すはずです。
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;
とにかく、あなたはnumberformatを設定したいと思います。(到来..)
sheet.Cells[Row, Column].NumberFormat = "0.00"