Top "Excelpackage" questions

ExcelPackage is open-source software that provides server-side generation of Microsoft Excel 2007 spreadsheets.

Set currency format for Excel cell that is created with ExcelPackage

How can I set the currency format for an Excel cell that is created with ExcelPackage? worksheet.Cell(i, 7).Value = …

c# excel excelpackage
C# create/modify/read .xlsx files

I am looking for a way to create, modify, read .xlsx files in C# without installing Excel or creating files …

c# excel npoi epplus excelpackage
How to set color or background with "excelpackage"

I use this package: ExcelPackage though I can't figure out how to set the background color for the cell. I …

c# excel excelpackage
Write excel using excel package with formatting

I want to write excel file using excel package from System.Data.DataTable and need to format some cells in …

c# excel datatable excelpackage
how to create excel sheet from template excel sheet programmatically?

I am creating a excel sheet from tempalte excel sheet. I have a code try { FileInfo newFile = new FileInfo(@"D:\…

c# asp.net excel excelpackage
How to set value of Excel cell by name instead of using coordinates with EPPlus?

I am able to set cell values using EPPlus: var template = new FileInfo(Server.MapPath("~/App_Data/my_template.xlsx")); …

c# excel openxml epplus excelpackage