0
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
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:
- DataTable dt = dataGridView1.DataSource as DataTable;
- Workbook workbook = new Workbook();
- Worksheet sheet = workbook.Worksheets[0];
- sheet.Name = "Sams Report";
- sheet.InsertDataTable(dt, true, 1, 1);
- workbook.SaveToFile("Report.xlsx", ExcelVersion.Version2013);
0
Then you have to set the title of the excel application, this will gives you the expected filename when saving
0
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
You can write above the for loop
0
Amit
where do I place that in my code or what do I replace?
getting build error.
Thanks