Top "Epplus" questions

EPPlus is a .NET library that reads and writes Excel files using the Office Open XML format (xlsx) without the need of interop.

Using EPPlus how can I generate a spreadsheet where numbers are numbers not text

I am creating a spreadsheet from a List<object[]> using LoadFromArrays The first entry of the array is …

c# excel epplus
C# EPPlus delete row from excel sheet

I'm currently working with an Excel file that has leading rows that have information I don't need. These extra rows …

c# excel epplus
Get Cell's Row number using EPPlus

How can I find the row numer of a specific cell using the EPPLus library? I'm looking for a method …

c# vb.net epplus
Read value from Excel file using EPPus cause "Row out of range" error

I'm working with EPPlus Library and wrote this code (just for test) private void btnCargarExcel_Click(object sender, EventArgs e) { …

c# .net epplus
Using EPPlus Excel - How to ignore excel error checking or remove green tag on top left of the cell

I use EPPlus to export excel 2007 file. The file can export normally but i have some problem with setting column …

c# excel epplus
How to set page layout break on worksheet using EPPlus

Is there a way to set specify where to break the page using EEPlus? I have the following code that …

c# export-to-excel epplus
Weird behavior when setting a row's height on EPPlus

I am building an Excel file with EEPlus under MVC-5 C# application. Everything goes as planned until I set a …

c# excel asp.net-mvc-5 epplus
Cell wrap using vb.net & EPPlus

I am trying to wrap a value in a cell using EPPlus and VB.net / ASP.Net Have anyone been …

asp.net vb.net epplus
Epplus use Excel Styles like Hyperlink

I am trying to style some cells, I'd like to use the standard "Hyperlink" Style, but I am unable to …

styles epplus
How to format decimal numbers as percentage in excel using epplus?

I'm using following code to format decimal number as percentage in excel using Epplus. I have used this example. sheet.…

c# excel percentage epplus