Reputation: 5876
I can create an Excel properly with 2 worksheets, and I can write a DataTable's data to Sheet 1 and I want to write the same data to Sheet 2 but Sheet 2 seems blank. Why "Sheet 2" is blank?
Here is my code:
Microsoft.Office.Interop.Excel.Application xlApp = new Microsoft.Office.Interop.Excel.Application();
if (xlApp == null)
{
Console.WriteLine("EXCEL could not be started. Check that your office installation and project references are correct.");
return;
}
xlApp.Visible = true;
Microsoft.Office.Interop.Excel.Workbook wb = xlApp.Workbooks.Add(Microsoft.Office.Interop.Excel.XlWBATemplate.xlWBATWorksheet);
Microsoft.Office.Interop.Excel.Worksheet ws = (Microsoft.Office.Interop.Excel.Worksheet)wb.Worksheets[1];
{
if (ws == null)
{
Console.WriteLine("Worksheet could not be created. Check that your office installation and project references are correct.");
}
Microsoft.Office.Interop.Excel.Range aRange = ws2.get_Range("C1", "C7");
for (int i = 0; i < main_dt.Columns.Count; i++)
{
ws.Cells[1, i + 1] = main_dt.Columns[i].ColumnName;
aRange = (Microsoft.Office.Interop.Excel.Range)ws.Cells[1, i + 1];
aRange.Interior.ColorIndex = 15;
aRange.Font.Bold = true;
}
for (int r = 0; r < main_dt.Rows.Count; r++)
{
for (int i = 0; i < main_dt.Columns.Count; i++)
{
ws.Cells[r + 2, i + 1] = main_dt.Rows[r][i].ToString();
}
}
}
// WORKSHEET 2 ******************
wb.Sheets.Add();
Microsoft.Office.Interop.Excel.Worksheet ws2 = (Microsoft.Office.Interop.Excel.Worksheet)wb.Worksheets[2];
{
if (ws2 == null)
{
Console.WriteLine("Worksheet could not be created. Check that your office installation and project references are correct.");
}
Microsoft.Office.Interop.Excel.Range aRange = ws2.get_Range("C1", "C7");
for (int i = 0; i < main_dt.Columns.Count; i++)
{
ws2.Cells[1, i + 1] = main_dt.Columns[i].ColumnName;
aRange = (Microsoft.Office.Interop.Excel.Range)ws2.Cells[1, i + 1];
aRange.Interior.ColorIndex = 15;
aRange.Font.Bold = true;
}
for (int r = 0; r < main_dt.Rows.Count; r++)
{
for (int i = 0; i < main_dt.Columns.Count; i++)
{
ws2.Cells[r + 2, i + 1] = main_dt.Rows[r][i].ToString();
}
}
}
Upvotes: 1
Views: 9167
Reputation: 415
Instead of:
wb.Sheets.Add();
Microsoft.Office.Interop.Excel.Worksheet ws2 =
(Microsoft.Office.Interop.Excel.Worksheet)wb.Worksheets[2];
try:
Microsoft.Office.Interop.Excel.Worksheet ws2 =
(Microsoft.Office.Interop.Excel.Worksheet)wb.Sheets.Add();
Upvotes: 5