C# 如何从sql导出到格式化的excel

C# 如何从sql导出到格式化的excel,c#,wpf,export-to-excel,C#,Wpf,Export To Excel,我有一个与SQLServer数据库交互的C#WPF应用程序。在应用程序中,我希望用户能够将某种数据从SQL导出到Excel。我首先尝试填充一个数据表,然后将其导出到excel文件。一切都很好,直到我面临一项任务,导出一个填充了以下sql查询的数据表: 要创建格式化的excel文件,请执行以下操作: 那么,我如何在excel文件中对一个地区的每笔销售的详细信息进行排序? 我对这个问题困惑了很久,请帮帮我 您可以使用excel互操作。excel互操作允许格式化特定范围甚至特定单元格 这些链接可能会

我有一个与SQLServer数据库交互的C#WPF应用程序。在应用程序中,我希望用户能够将某种数据从SQL导出到Excel。我首先尝试填充一个数据表,然后将其导出到excel文件。一切都很好,直到我面临一项任务,导出一个填充了以下sql查询的数据表:

要创建格式化的excel文件,请执行以下操作:

那么,我如何在excel文件中对一个地区的每笔销售的详细信息进行排序?
我对这个问题困惑了很久,请帮帮我

您可以使用excel互操作。excel互操作允许格式化特定范围甚至特定单元格

这些链接可能会有所帮助


您可以使用excel互操作。excel互操作允许格式化特定范围甚至特定单元格

这些链接可能会有所帮助


如果有人需要解决类比问题,我用这段代码实现了目标:

        int currentXLLine = 1; // line in xls file to start
        int currentId = -1;    // current sellID  
        int detailCount = 1;
        int beginSumLine = currentXLLine+3;
        for (int i = 0; i < dt.Rows.Count; i++) 
        {
            if ((currentId != (int)dt.Rows[i][0])) 
            {

                if (i != 0)
                {
                    cell = oSheet.Cells[currentXLLine+1, 7];
                    cell.Font.Bold = true;
                    cell.HorizontalAlignment = ExcelApp.Constants.xlRight;
                    cell.Value = "OVERALL:";
                    cell = oSheet.Cells[currentXLLine + 1, 8];
                    cell.Formula = "=SUM(H"+beginSumLine.ToString()+":H" + currentXLLine.ToString() + ")";
                    cell.Font.Bold = true;
                    cell.HorizontalAlignment = ExcelApp.Constants.xlRight;

                    cell = oSheet.Columns[7];
                    Past.AutoFitColumn(oSheet, 7);
                    cell.NumberFormat = "# ##0.00";
                    cell = oSheet.Columns[8];
                    Past.AutoFitColumn(oSheet, 8);
                    cell.NumberFormat = "# ##0.00";
                    cell.HorizontalAlignment = ExcelApp.Constants.xlCenter;

                    currentXLLine += 3;
                    detailCount = 1;

                }

                oRange = oSheet.get_Range("B" + currentXLLine.ToString(), "C" + currentXLLine.ToString());
                oRange.Merge(Type.Missing);
                oRange.BorderAround(ExcelApp.XlLineStyle.xlContinuous, ExcelApp.XlBorderWeight.xlThin, Microsoft.Office.Interop.Excel.XlColorIndex.xlColorIndexAutomatic, Missing.Value);
                oRange.HorizontalAlignment = ExcelApp.Constants.xlRight;
                oRange.VerticalAlignment = ExcelApp.Constants.xlCenter;
                oRange.EntireRow.Font.Bold = false;
                oSheet.Cells[currentXLLine, 2] = "SellDate";

                oRange = oSheet.get_Range("D" + currentXLLine.ToString(), "E" + currentXLLine.ToString());
                oRange.Merge(Type.Missing);
                oRange.BorderAround(ExcelApp.XlLineStyle.xlContinuous, ExcelApp.XlBorderWeight.xlThin, Microsoft.Office.Interop.Excel.XlColorIndex.xlColorIndexAutomatic, Missing.Value);
                oRange.HorizontalAlignment = ExcelApp.Constants.xlLeft;
                oRange.VerticalAlignment = ExcelApp.Constants.xlCenter;
                oRange.EntireRow.Font.Bold = false;
                oSheet.Cells[currentXLLine, 4] = dt.Rows[i][3].ToString();
                beginSumLine = currentXLLine + 3;

                currentXLLine += 2;


                oRange = oSheet.get_Range("C" + currentXLLine.ToString(), "E" + currentXLLine.ToString());
                oRange.Merge(Type.Missing);
                oRange.BorderAround(ExcelApp.XlLineStyle.xlContinuous, ExcelApp.XlBorderWeight.xlThin, Microsoft.Office.Interop.Excel.XlColorIndex.xlColorIndexAutomatic, Missing.Value);
                oRange.HorizontalAlignment = ExcelApp.Constants.xlCenter;
                oRange.VerticalAlignment = ExcelApp.Constants.xlCenter;
                oRange.EntireRow.Font.Bold = true;

                oRange = oSheet.get_Range("B" + currentXLLine.ToString(), "B" + currentXLLine.ToString());
                oRange.Merge(Type.Missing);
                oRange.BorderAround(ExcelApp.XlLineStyle.xlContinuous, ExcelApp.XlBorderWeight.xlThin, Microsoft.Office.Interop.Excel.XlColorIndex.xlColorIndexAutomatic, Missing.Value);
                oRange.HorizontalAlignment = ExcelApp.Constants.xlCenter;
                oRange.VerticalAlignment = ExcelApp.Constants.xlCenter;
                oRange.EntireRow.Font.Bold = true;

                oRange = oSheet.get_Range("F" + currentXLLine.ToString(), "F" + currentXLLine.ToString());
                oRange.Merge(Type.Missing);
                oRange.BorderAround(ExcelApp.XlLineStyle.xlContinuous, ExcelApp.XlBorderWeight.xlThin, Microsoft.Office.Interop.Excel.XlColorIndex.xlColorIndexAutomatic, Missing.Value);
                oRange.HorizontalAlignment = ExcelApp.Constants.xlCenter;
                oRange.VerticalAlignment = ExcelApp.Constants.xlCenter;
                oRange.EntireRow.Font.Bold = true;

                oRange = oSheet.get_Range("G" + currentXLLine.ToString(), "G" + currentXLLine.ToString());
                oRange.Merge(Type.Missing);
                oRange.BorderAround(ExcelApp.XlLineStyle.xlContinuous, ExcelApp.XlBorderWeight.xlThin, Microsoft.Office.Interop.Excel.XlColorIndex.xlColorIndexAutomatic, Missing.Value);
                oRange.HorizontalAlignment = ExcelApp.Constants.xlCenter;
                oRange.VerticalAlignment = ExcelApp.Constants.xlCenter;
                oRange.EntireRow.Font.Bold = true;

                oRange = oSheet.get_Range("H" + currentXLLine.ToString(), "H" + currentXLLine.ToString());
                oRange.Merge(Type.Missing);
                oRange.BorderAround(ExcelApp.XlLineStyle.xlContinuous, ExcelApp.XlBorderWeight.xlThin, Microsoft.Office.Interop.Excel.XlColorIndex.xlColorIndexAutomatic, Missing.Value);
                oRange.HorizontalAlignment = ExcelApp.Constants.xlCenter;
                oRange.VerticalAlignment = ExcelApp.Constants.xlCenter;
                oRange.EntireRow.Font.Bold = true;

                oSheet.Cells[currentXLLine, 2] = "№";
                oSheet.Cells[currentXLLine, 3] = "ProductName";
                oSheet.Cells[currentXLLine, 6] = "Quantity";
                oSheet.Cells[currentXLLine, 7] = "Price";
                oSheet.Cells[currentXLLine, 8] = "Sum";
                currentXLLine += 1;

            }

        oSheet.Cells[currentXLLine, 2] = (detailCount).ToString(); //rowView.Row["Ассортимент"].ToString();
        cell = oSheet.Cells[currentXLLine, 2];
        cell.BorderAround(ExcelApp.XlLineStyle.xlContinuous, ExcelApp.XlBorderWeight.xlThin, Microsoft.Office.Interop.Excel.XlColorIndex.xlColorIndexAutomatic, Missing.Value);

        oSheet.Cells[currentXLLine, 3] = (string)dt.Rows[i][4];
        cell = oSheet.Cells[currentXLLine, 3];
        cell.BorderAround(ExcelApp.XlLineStyle.xlContinuous, ExcelApp.XlBorderWeight.xlThin, Microsoft.Office.Interop.Excel.XlColorIndex.xlColorIndexAutomatic, Missing.Value);
        oRange = oSheet.get_Range("C" + (currentXLLine).ToString(), "E" + (currentXLLine).ToString());
        oRange.Merge(Type.Missing);
        oRange.BorderAround(ExcelApp.XlLineStyle.xlContinuous, ExcelApp.XlBorderWeight.xlThin, Microsoft.Office.Interop.Excel.XlColorIndex.xlColorIndexAutomatic, Missing.Value);
        oSheet.Cells[currentXLLine, 6] = dt.Rows[i][5].ToString();
        cell = oSheet.Cells[currentXLLine, 6];
        cell.BorderAround(ExcelApp.XlLineStyle.xlContinuous, ExcelApp.XlBorderWeight.xlThin, Microsoft.Office.Interop.Excel.XlColorIndex.xlColorIndexAutomatic, Missing.Value);
        oSheet.Cells[currentXLLine, 7] = dt.Rows[i][6].ToString();
        cell = oSheet.Cells[currentXLLine, 7];
        cell.BorderAround(ExcelApp.XlLineStyle.xlContinuous, ExcelApp.XlBorderWeight.xlThin, Microsoft.Office.Interop.Excel.XlColorIndex.xlColorIndexAutomatic, Missing.Value);
        oSheet.Cells[currentXLLine, 8] = Convert.ToInt16(dt.Rows[i][5])*Convert.ToDouble(dt.Rows[i][6]);
        cell = oSheet.Cells[currentXLLine, 8];
        cell.BorderAround(ExcelApp.XlLineStyle.xlContinuous, ExcelApp.XlBorderWeight.xlThin, Microsoft.Office.Interop.Excel.XlColorIndex.xlColorIndexAutomatic, Missing.Value);
        detailCount += 1;
        currentXLLine += 1;
        currentId = (int)dt.Rows[i][0];

    }


cell = oSheet.Cells[currentXLLine + 1, 7];
  cell.Font.Bold = true;
  cell.HorizontalAlignment = ExcelApp.Constants.xlRight;
  cell.Value = "OVERALL:";
  cell = oSheet.Cells[currentXLLine + 1, 8];
  cell.Formula = "=SUM(H" + beginSumLine.ToString() + ":H" + currentXLLine.ToString() + ")";
  cell.Font.Bold = true;
  cell.HorizontalAlignment = ExcelApp.Constants.xlRight;
int currentxline=1;//要启动的xls文件中的行
int currentId=-1;//当前sellID
int detailCount=1;
int beginSumLine=currentXLLine+3;
对于(int i=0;i