ホームページ > バックエンド開発 > C++ > C# からエクスポートするときに Excel の列を小数として書式設定する方法

C# からエクスポートするときに Excel の列を小数として書式設定する方法

Susan Sarandon
リリース: 2025-01-07 12:03:41
オリジナル
263 人が閲覧しました

How to Format Excel Columns as Decimals When Exporting from C#?

C からエクスポートするときに Excel の列を 10 進数として書式設定する

C# からエクスポートするときに Excel ファイルの特定の列を 10 進数として書式設定するには、次のメソッドを使用できます。

using OfficeOpenXml;
using OfficeOpenXml.Style;
using DataTable dt;

public void ExportToExcel(DataTable dt, string FileName)
{
    // Create a new Excel package.
    using (ExcelPackage excelPackage = new ExcelPackage())
    {
        // Create a new worksheet and load the data from the DataTable into it.
        ExcelWorksheet ws = excelPackage.Workbook.Worksheets.Add(FileName);
        ws.Cells["A1"].LoadFromDataTable(dt, true);

        // Apply number formatting to the specified columns (Actual Estimated Price and Approved Estimated Price in this example).
        int[] decimalColumns = { 1, 2 };
        foreach (int col in decimalColumns)
        {
            ws.Cells[ws.Dimension.Start.Row, col, ws.Dimension.End.Row, col].Style.Numberformat.Format = "0.00";
        }

        // Other formatting and cleanup code as needed...

        // Convert the Excel package to a byte array and send it to the browser.
        byte[] bin = excelPackage.GetAsByteArray();
        // ...
    }
}
ログイン後にコピー

10 進数の書式設定に加えて、ヘッダー セルを結合したり、その他の設定を行うこともできます。 OfficeOpenXML ライブラリを使用した書式設定オプション。上記のコード サンプルは、CustomerName ヘッダー セルを結合したり、ヘッダー行を灰色の太字テキストに設定したりするなど、これらの操作を実行する方法を示しています。

const int headerRow = 1;

ws.Cells[headerRow, 1, headerRow, 2].Merge = true;
ws.Cells[headerRow, 1].Value = "CustomerName";

// ...

for (int col = 1; col <= ws.Dimension.End.Column; col++)
{
    // Make all columns just a bit wider.
    ws.Column(col).Width = ws.Column(col).Width + 1;

    var cell = ws.Cells[headerRow, col];
    
    // Format the header cells
    cell.Style.Font.Bold = true;
    cell.Style.Fill.PatternType = ExcelFillStyle.Solid;
    cell.Style.Fill.BackgroundColor.SetColor(ColorTranslator.FromHtml("#BFBFBF"));
}
ログイン後にコピー

これらのカスタマイズにより、エクスポートされた Excel ファイルは目的の内容になります。 10 進数の列とヘッダー セルの両方の書式設定。

以上がC# からエクスポートするときに Excel の列を小数として書式設定する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
著者別の最新記事
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート