Tutorial by Examples

Download the files from CodePlex and add them to the project. Or install the files with the Package Manager. PM> Install-Package EPPlus
//Create a new ExcelPackage using (ExcelPackage excelPackage = new ExcelPackage()) { //Set some properties of the Excel document excelPackage.Workbook.Properties.Author = "VDWWD"; excelPackage.Workbook.Properties.Title = "Title of Document"; excelPackage.Workboo...

Page 1 of 1