Heim >Backend-Entwicklung >C++ >Wie formatiere ich Excel-Dezimalspalten beim Exportieren von Daten mit C# richtig?
Excel-Spalte mit C# beim Export in Dezimalformat formatieren
Beim Exportieren von Daten aus einer Datenbank nach Excel mit C# können Probleme auftreten wobei numerische Spalten nicht korrekt formatiert sind. Insbesondere werden Dezimalwerte möglicherweise als Ganzzahlen angezeigt, anstatt die Dezimalstellen anzuzeigen.
Um dieses Problem zu beheben und sicherzustellen, dass Dezimalspalten korrekt exportiert werden, können Sie die folgende Methode verwenden, um bestimmte Spalten innerhalb der Dezimalformatierung hinzuzufügen Excel-Datei:
private static void ExportToExcel(DataTable dt, string FileName) { // Create an ExcelPackage object. using (ExcelPackage excelPackage = new ExcelPackage()) { // Add a new worksheet to the package. ExcelWorksheet ws = excelPackage.Workbook.Worksheets.Add(FileName); // Load the data from the DataTable into the worksheet. ws.Cells["A1"].LoadFromDataTable(dt, true); // Autofit the columns to accommodate the data. ws.Cells[ws.Dimension.Address].AutoFitColumns(); // Iterate through the columns and apply decimal formatting to the desired ones. for (int col = 1; col <= ws.Dimension.End.Column; col++) { // Get the cell in the first row (header row) of the column. var cell = ws.Cells[1, col]; // If the column contains numeric data, apply decimal formatting to it. var columnType = dt.Columns[col - 1].DataType; if (columnType == typeof(decimal) || columnType == typeof(double)) { // Set the number format to two decimal places. cell.Style.Numberformat.Format = "0.00"; } } // Convert the ExcelPackage object to a byte array. byte[] bin = excelPackage.GetAsByteArray(); // Send the byte array to the browser for download. Response.ClearHeaders(); Response.Clear(); Response.Buffer = true; Response.ContentType = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"; Response.AddHeader("content-length", bin.Length.ToString()); Response.AddHeader("content-disposition", "attachment; filename=\"" + FileName + ".xlsx\""); Response.OutputStream.Write(bin, 0, bin.Length); Response.Flush(); // Complete the request and clean up. HttpContext.Current.ApplicationInstance.CompleteRequest(); } }
Diese Methode akzeptiert eine Datentabelle und einen Dateinamen als Parameter. Es erstellt ein ExcelPackage-Objekt und lädt die Daten hinein. Der Code durchläuft dann jede Spalte und prüft, ob sie numerische Daten enthält. Ist dies der Fall, wird das Zahlenformat auf „0,00“ gesetzt, um sicherzustellen, dass zwei Nachkommastellen angezeigt werden. Abschließend wird das ExcelPackage in ein Byte-Array konvertiert und als Anhang an den Browser gesendet.
Das obige ist der detaillierte Inhalt vonWie formatiere ich Excel-Dezimalspalten beim Exportieren von Daten mit C# richtig?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!