creating simple excel sheet in c# with strings as input

前端 未结 1 1088
我寻月下人不归
我寻月下人不归 2020-12-15 18:26

I am working on creating EXcel sheet in C#.

No Of columns:4
Name of columns: SNO, Name, ID, Address

There is no constarint on number of row

相关标签:
1条回答
  • 2020-12-15 18:39

    If you include a reference to Excel Interop you can do whatever you please having Office installed on your system.

    A little example:

    using Excel = Microsoft.Office.Interop.Excel;
    
    Excel.Application excel = new Excel.Application();
    excel.Visible = true;
    Excel.Workbook wb = excel.Workbooks.Open(excel_filename);
    Excel.Worksheet sh = wb.Sheets.Add();
    sh.Name = "TestSheet";
    sh.Cells[1, "A"].Value2 = "SNO";
    sh.Cells[2, "B"].Value2 = "A";
    sh.Cells[2, "C"].Value2 = "1122";
    wb.Close(true);
    excel.Quit();            
    
    0 讨论(0)
提交回复
热议问题