7
Answers

c# export to excel with a Specific sheet name

james james

james james

7y
298
1
The below code when exporting to excel gives the sheet name Book1. How can i edit it to where export the sheet name as "Sams Report"?
 
  1. private void btn_Export_Click(object sender, EventArgs e)  
  2.        {  
  3.            if (dataGridView1.Rows.Count > 0)  
  4.            {  
  5.                Microsoft.Office.Interop.Excel.ApplicationClass XcelApp = new Microsoft.Office.Interop.Excel.ApplicationClass();  
  6.                XcelApp.Application.Workbooks.Add(Type.Missing);  
  7.   
  8.                // Storing header part in Excel     
  9.                for (int i = 1; i < dataGridView1.Columns.Count + 1; i++)  
  10.                {  
  11.                    XcelApp.Cells[1, i] = dataGridView1.Columns[i - 1].HeaderText;  
  12.                }  
  13.   
  14.                // Storing Each row and column value to excel sheet     
  15.                for (int i = 0; i < dataGridView1.Rows.Count; i++)  
  16.                {  
  17.                    for (int j = 0; j < dataGridView1.Columns.Count; j++)  
  18.                    {  
  19.                        XcelApp.Cells[i + 2, j + 1] = dataGridView1.Rows[i].Cells[j].Value.ToString();  
  20.                    }  
  21.                }  
  22.                XcelApp.Columns.AutoFit();  
  23.                XcelApp.Visible = true;  
  24.            }  
  25.        }  
 
 
 
Answers (7)
0
SriHari VP

SriHari VP

NA 163 3.1k 7y
You will need to get reference to the active sheet and set a name to it.
 
Microsoft.Office.Interop.Excel.Workbook workBook;
Microsoft.Office.Interop.Excel.Worksheet workSheet;
 
workBook = XcelApp.Application.Workbooks.Add(Type.Missing);
workSheet = (Microsoft.Office.Interop.Excel.Worksheet) workBook.ActiveSheet;
workSheet.Name = "Sams Report";
0
Leon D

Leon D

NA 479 51 7y
I'd suggest you use a free third party library free Spire.XLS to export data to excel, it's easy and doesn't rely on Excel. You can get free Spire.XLS dll from NuGet Package Manager and refer to the following code:
  1. DataTable dt = dataGridView1.DataSource as DataTable;  
  2. Workbook workbook = new Workbook();  
  3. Worksheet sheet = workbook.Worksheets[0];  
  4. sheet.Name = "Sams Report";  
  5. sheet.InsertDataTable(dt, true, 1, 1);  
  6. workbook.SaveToFile("Report.xlsx", ExcelVersion.Version2013);  
0
Amit Gupta

Amit Gupta

NA 16.5k 25.7k 7y
Then you have to set the title of the excel application, this will gives you the expected filename when saving
0
james james

james james

NA 175 2.9k 7y
I spoke wrong this is what i need to do without having to save the file.
 
The below code when exporting to excel gives the Book name Book1. How can i edit it to export the Book name as "Sams Report"?
0
Amit Gupta

Amit Gupta

NA 16.5k 25.7k 7y
You can write above the for loop
0
james james

james james

NA 175 2.9k 7y
Amit
 
where do I place that in my code or what do I replace?
getting build error.
 
Thanks 
0
Amit Gupta

Amit Gupta

NA 16.5k 25.7k 7y
  1. Microsoft.Office.Interop.Excel.Worksheet worksheet = (Worksheet)xlApp.Worksheets["Sheet1"];  
  2.   worksheet.Name = “NewTabName”