Skip to main content
CodePlex is shutting down. Updated URL to the official GitHub repository
Source Link
Kolappan N
  • 3.9k
  • 2
  • 37
  • 43

If you're creating Excel 2007/2010 files give this open source project a try: http://closedxml.codeplex.comhttps://github.com/closedxml/closedxml

It provides an object oriented way to manipulate the files (similar to VBA) without dealing with the hassles of XML Documents. It can be used by any .NET language like C# and Visual Basic (VB).

ClosedXML allows you to create Excel 2007/2010 files without the Excel application. The typical example is creating Excel reports on a web server:

var workbook = new XLWorkbook();
var worksheet = workbook.Worksheets.Add("Sample Sheet");
worksheet.Cell("A1").Value = "Hello World!";
workbook.SaveAs("HelloWorld.xlsx");

If you're creating Excel 2007/2010 files give this open source project a try: http://closedxml.codeplex.com

It provides an object oriented way to manipulate the files (similar to VBA) without dealing with the hassles of XML Documents. It can be used by any .NET language like C# and Visual Basic (VB).

ClosedXML allows you to create Excel 2007/2010 files without the Excel application. The typical example is creating Excel reports on a web server:

var workbook = new XLWorkbook();
var worksheet = workbook.Worksheets.Add("Sample Sheet");
worksheet.Cell("A1").Value = "Hello World!";
workbook.SaveAs("HelloWorld.xlsx");

If you're creating Excel 2007/2010 files give this open source project a try: https://github.com/closedxml/closedxml

It provides an object oriented way to manipulate the files (similar to VBA) without dealing with the hassles of XML Documents. It can be used by any .NET language like C# and Visual Basic (VB).

ClosedXML allows you to create Excel 2007/2010 files without the Excel application. The typical example is creating Excel reports on a web server:

var workbook = new XLWorkbook();
var worksheet = workbook.Worksheets.Add("Sample Sheet");
worksheet.Cell("A1").Value = "Hello World!";
workbook.SaveAs("HelloWorld.xlsx");
added further explanation from the author
Source Link
Armfoot
  • 4.9k
  • 6
  • 46
  • 62

If you're creating Excel 2007/2010 files give this open source project a try: http://closedxml.codeplex.com

It provides an object oriented way to manipulate the files (similar to VBA) without dealing with the hassles of XML Documents. It can be used by any .NET language like C# and Visual Basic (VB).

ClosedXML allows you to create Excel 2007/2010 files without the Excel application. The typical example is creating Excel reports on a web server:

var workbook = new XLWorkbook();
var worksheet = workbook.Worksheets.Add("Sample Sheet");
worksheet.Cell("A1").Value = "Hello World!";
workbook.SaveAs("HelloWorld.xlsx");

If you're creating Excel 2007/2010 files give this open source project a try: http://closedxml.codeplex.com

If you're creating Excel 2007/2010 files give this open source project a try: http://closedxml.codeplex.com

It provides an object oriented way to manipulate the files (similar to VBA) without dealing with the hassles of XML Documents. It can be used by any .NET language like C# and Visual Basic (VB).

ClosedXML allows you to create Excel 2007/2010 files without the Excel application. The typical example is creating Excel reports on a web server:

var workbook = new XLWorkbook();
var worksheet = workbook.Worksheets.Add("Sample Sheet");
worksheet.Cell("A1").Value = "Hello World!";
workbook.SaveAs("HelloWorld.xlsx");
added 6 characters in body
Source Link
Manuel
  • 11.3k
  • 14
  • 58
  • 86

If you're only going to createcreating Excel 2007/2010 files give my APIthis open source project a try: http://closedxml.codeplex.com

If you're only going to create Excel 2007/2010 files give my API a try: http://closedxml.codeplex.com

If you're creating Excel 2007/2010 files give this open source project a try: http://closedxml.codeplex.com

Post Made Community Wiki
Source Link
Manuel
  • 11.3k
  • 14
  • 58
  • 86
Loading