EPPlus is a .NET library that reads and writes Excel 2007/2010 files using the Open Office Xml format (xlsx).
1
vote
0answers
26 views
c# Excelpackage reading cell range into a datatable
Using C# I can manage to read in range of cells using Excel interop. But it's having trouble keeping consistent with dollar values and percentages. So I'm trying out EEPLus.
FileInfo newFile = new ...
0
votes
1answer
26 views
How to display EPPlus package in an asp.net page
I have created an excel package using EPPlus, however instead of downloading as an excel file, I want to see the contents of that package in an asp.net page.
0
votes
1answer
30 views
How to load text containing commas in a single Excel cell with EPPlus
I'm giving a try to the EPPlus library and I'm stucked at this: I have to load a text in a single cell, but when this text contains a comma the code that I'm using split my text along multiple cells ...
1
vote
0answers
75 views
+100
OpenXML / EPPlus - Create PivotCache in .Net
I'm hoping this could help me, at least, answer one of the 2 questions I asked here, but I am looking how to create a PivotCache in EPPlus / OpenXML and can't find anything online / in their ...
0
votes
1answer
87 views
Formatting column in Excel using EPPlus Lib C#.Net
My DataTable has the information from a Data base table and I'm able to dump the DataTable value into Excel using EPPlus lib.
Now, I want to format the column name in the Excel by setting range(lets ...
2
votes
1answer
47 views
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)
{
if (this.openFileDialog1.ShowDialog() == ...
1
vote
1answer
238 views
Microsoft.Office.Interop.Excel or EPPlus for read a huge (or not) Excel file
I wrote a code to read a column from a Excel file. I use Microsoft.Office.Interop.Excel on this, first read the entire Range and then write in System.Array after that I do some operations with the ...
0
votes
1answer
84 views
EPPlus multi-threading gets “out of memory” exception
I was trying to parallelize EPPlus by using multi-threading. I tried to spawn 20 threads with each thread generating 1000 sheets with 10 column and 26 rows. The program consumed memory up to 1.8GB and ...
0
votes
0answers
28 views
Set X-Axis interval in EPPLUS
I have rows with hourly values, and I want an X-axis with daily intervals. In Interop:
axis.TickLabels.NumberFormat = "d-mmm";
int weeksCollected = 1;
int recsPerDay = 24;
axis.TickLabelSpacing = ...
0
votes
1answer
68 views
Print command in EPPlus?
I'm using EPPLUS to allow users to download data to Excel.
However, I'd like to add a feature wherein they can just choose to print this data rather than download it. Can we issue a print command ...
0
votes
0answers
39 views
Epplus: New row insertion into existing named range cells
Im using Epplus to create Excel 2010 from a existing excel template. In my existing template I have many Namedrange cells.
One of my case is, I have two named range cells one below one in a sheet. ...
1
vote
1answer
137 views
How to append HTML in epplus worksheet?
I'm exporting my HTML report into excel using c#. I m writing all my HTML in response (Response.Write()) along with css and download excel and its working fine. Now I'm in a need to separate its HTML ...
0
votes
0answers
47 views
How to set the style for an entire column in EPPlus?
Is it possible to set the style for an entire column in EPPlus? I would expect that I could just use the Column method, but when I do I get strange results:
//Sets all cells in all columns to Red
...
0
votes
1answer
109 views
How to use Import Xml feature in EPPLUS or other excel generation library?
I was reading in some very old posts that the XML importing feature is going to be implemented in EPPLus. Is it currently implemented?
How can I Import data to a excel document that has a XML mapped ...
0
votes
0answers
343 views
writing an excel file in epplus
I have been stuck on this for days and despite all of the help out there, none of these solutions have been working for me. What I want to do is create an excel file using the epplus library with some ...
0
votes
2answers
139 views
Auto column width in EPPlus
How to make columns to be auto width when texts in columns are long?
I use this code
Worksheet.Column(colIndex).AutoFitColumn() on all columns
Worksheet.cells.AutoFitColumns()
...
0
votes
0answers
119 views
Epplus SetPosition picture issue
I am using Epplus library to generate Excel 2010 and up compatible files in Asp.Net C#.
I am using version 3.1.2 which is the latest at this moment.
I am setting the row height first, before adding ...
0
votes
0answers
107 views
Range Selection for clustered column chart using EPPlus library
I have the data in excel sheet which looks like this.
Design pass fail todo na blk -NEW ROW-
design1 10 20 12 3 5 -NEW ROW-
design2 13 12 14 3 3 -NEW ROW-
design3 11 13 1 1 4
...
0
votes
0answers
14 views
How to get exiting shape width and height with EPPlus?
I am trying to get the width and height of an existing shape in a template.
Does anyone know how can I achieve that? It seems like EPPlus doesn't have a function to do that.
Thank you in advance.
0
votes
0answers
32 views
How to get a mergecell address from excell sheet using Epplus and Linq?
I have a excel sheet with merge cells. Now I would like to return the mergecell address where the mergecell value is X. My code is as follows:
var query3 = (from cell in sheet.Cells
...
0
votes
0answers
67 views
EPPlus namedstyle horizontalAlignment
I have problem implementing the following code:
var newNamedStyle=_workbook.Styles.CreateNamedStyle("testStyle");
newNamedStyle.Style.HorizontalAlignment=ExcelHorizontalAlignment.Center;
...
0
votes
0answers
56 views
Aligning .NET and EPPlus chart formats
I have a web application which uses the .NET Charting framework to output charts on a page. The user can download the data, including the charts through a class written using the excellent EPPlus ...
0
votes
0answers
94 views
Changing the colour palette of an EPPlus piechart?
I have a web application which uses the .NET Charting framework to output charts on a page. The user can download the data, including the charts through a class written using the excellent EPPlus ...
0
votes
0answers
57 views
How do I change the style of a footer using EPPlus with C#?
var p = new ExcelPackage();
var wb = p.Workbook;
ExcelWorksheet ws = wb.Worksheets[0];
ws.HeaderFooter.OddFooter.RightAlignedText = "ProductName\u2122\nhttp://www.website.com/link";
With normal ...
1
vote
0answers
121 views
c# epplus error Removed Part: Drawing shape
I just started using the epplus library after attempting to use oledb and then tried interop.
Below is what i'm working on
public void editExcel_VariablesEEP()
{
try
{
...
0
votes
0answers
118 views
EPP plus Excel as attachment
Hi I am using EPPPlus to return a excel file and also to send the same file as an attachment.
I could open the excel file and also got attachement but when I open the email attachment I am getting ...
1
vote
0answers
102 views
How do I populate an ExcelTable using EPPlus
I am trying to modify exisiting excel worksheet. Precisely I'd like to add a few rows to a table that exists in the worksheet (created using format as a table). I tried
var table = ...
2
votes
2answers
130 views
EPPlus - Working with multiple columns by index rather than Alphabetical Representation
I am using EPPlus in my .Net project to output some data into an Excel worksheet.
Suppose I wanted to format Columns E-G with a specific format. Using EPPlus, I know I can do it as follows:
...
0
votes
1answer
169 views
Error while generating excel from datatable in C#
I am getting error when using EPPlus library to generate excel from a datatable
System.ObjectDisposedException: Package object was closed and disposed, so cannot carry out operations on this object ...
0
votes
0answers
98 views
High memory usage when file generated using EPPLus library
HI All,
Using ANTS memory profiler, I noticed that in a process of creating Excel file using EPPLUS(3.5 MB) on IIS, a lot more memory (150MB) is added to IIS Worker Process (w3wp.exe). The memory ...
0
votes
1answer
136 views
Memory usage goes high when exporting data to excel using EPPPlus library
I am exporting data available in a DataSet to excel file using EPPlus library. Number for rows can be between 1000 to 300000 with 10-15 columns. We are running queries which can generated files ...
0
votes
0answers
35 views
How to remove the drill down option of the pivot table using epplus
How to remove the drill down option of the pivot table using epplus?
I tried using the code below but it did not work.
pivot.ShowDrill = false;
pivot.EnableDrill = false;
0
votes
0answers
119 views
EPPlus multiple hyperlinks
I am having a problem inserting a lot of hyperlinks into excel using EPPlus.
If I run this
ExcelPackage excelApp = new ExcelPackage();
ExcelWorksheet sheet = ...
-2
votes
1answer
271 views
Corrupted xlsx file exported with EPPlus [closed]
Some of my code is here:
ExcelPackage pck = new ExcelPackage();
var ws = pck.Workbook.Worksheets.Add("workSheet1");
ws.Cells[1,1].Value = "This is an example";
...
0
votes
0answers
46 views
EPPlus PageBreak
Excel inserts page breaks automatically. I want to know, where page break was inserted. Does anybody knows, how to get this information? Row.PageBreak is only for inserting manual PageBreaks. When i ...
1
vote
1answer
118 views
Locking Cells that have formulas using EPPlus
I want to lock a cell that has a value calculated by a formula using EPSPlus.
So if a cell used in the formula is changed the cell value will change accordingly however the cell cannot be edited ...
0
votes
4answers
181 views
asp.net check if a file from the Response.OutputStream has been saved/opened
I am building an excel file (using EPPLUS) on a web page which gives the option to either save or open the file.
Response.ContentType = ...
3
votes
1answer
173 views
Checking if file actually is an Excel file using EPPlus
I'm using EPPlus in C# to read an Excel (.xlsx) file. The initialization is done like this:
var package = new ExcelPackage(new FileInfo(filename));
This works fine but is there any way to check if ...
1
vote
1answer
104 views
Counting cells in a column with EPPlus
I'm using EPPlus in a C# application for reading an Excel (.xlsx) file. What I need to do is counting how many cells in the column I contain the value Value.
For this I have defined the following ...
1
vote
0answers
134 views
EPPlus C# Multiple saves
I'm using EPPlus library in asp.net + C# to create .xlsx file. My file may contain a few million records and i'm creating one ExcelWorksheet per 100K records. problem is that a 40Mb xlsx that contains ...
0
votes
1answer
112 views
EPPlus exception on loading uploaded file in ASP.NET 4.0
Here's my code. Its purpose is to count the number of lines where the first column has text in it.
ExcelWorksheet sheet = null;
using (ExcelPackage pkg = new ExcelPackage(new ...
0
votes
1answer
398 views
Get style of excel cell with Epplus
Is there any way to get the style of a specific cell with open xml sdk and epplus?
Currently I'm getting the value in the following way:
currentWorksheet.Cells[nRowId, 3].Text.Trim();
In adittion ...
0
votes
1answer
111 views
Is it possible to launch a .xlsm file from an asp .net page?
I need to launch a .xlsm file from within an asp .net (VB) page. I tried a bunch of things, including EPPlus, but nothing seems to work. Any thoughts?
0
votes
1answer
188 views
How do I save an ExcelPackage to a local path without opening Excel?
I'm trying to output a ExcelPackage created using EPPLUS to a file path without Excel actually opening up the file. I've got the below code right now...what am I doing wrong? Thanks.
Dim FileName As ...
1
vote
1answer
240 views
Hide excel gridlines using EPPLUS
What is the method/command for hiding excel spreadsheet gridlines in EPPLUS?
0
votes
1answer
423 views
When use subtotal function with Epplus, I get “Excel found unreadable content in…” error
I have a simple Excel document generated by Epplus library in my web page; however when I use the excel function "subtotal", I get the following error:
Excel found unreadable content in...
Here ...
1
vote
1answer
248 views
Headers for Excel worksheet using EPPlus
I am using EPPLus to create and format an excel sheet from my data set. I want to set headers on the excel sheet using EPPlus. I could not find a way to do it. I want to set the left header, right ...
2
votes
1answer
188 views
MVC 3 Entity Framework Empty Result Set
I am working on an application in which it returns an excel report with each employee having multiple roles and their expected and actual hours for each role. For instance, I may be listed as a ...
-3
votes
1answer
328 views
epplus from row insert [closed]
i need to insert new row below to row with formatting like above row in excel using epplus!
after inserting row merge cell is disturb and data also unreadable
Please give me solution as soon as ...
0
votes
1answer
399 views
How to set column name on pivot table
Using this answer I was able to create a pivot table with a tabular layout in EPPlus.
However column headings are not displaying properly. When I create the pivot table with Excel I get the column ...
