Updated Wiki: Pivot Table example
Pivot Tables In this example, we'll create a pivot table of monthly pastry sales. First, we'll need our Pastry class: public class Pastry { public Pastry(string name, int amount, string month) { Month...
View ArticleCommented Issue: replace function [6499]
will there be a function on the workbook or the worksheet to replace a given string? it could look something like that : workbook.replace("what you search", "what you want to replace it with"); I...
View ArticleCommented Issue: replace function [6499]
will there be a function on the workbook or the worksheet to replace a given string? it could look something like that : workbook.replace("what you search", "what you want to replace it with"); I...
View ArticleNew Post: Exporting gridview to excel with multiple headers
Hello, I am able to export to excel gridview with one header. But how do I export gridview with two headers? Please any help is greatly appreciated. Thanks
View ArticleNew Post: Exporting gridview to excel with multiple headers
You'll have to do it manually.
View ArticleNew Post: Code examples on creating Pivot Table?
Thank you. It's a very good example. I wish I had know that ClosedXML could be used to create Pivot tables, because I ended up using Aspose.Cells to do mine. It's a pretty good product, but I still...
View ArticleNew Post: Exporting gridview to excel with multiple headers
I do not understand, are you saying that I can not do with closedxml? What do you mean manually ?
View ArticleNew Post: Memory problem with ClosedXML
I am doing a test where I create a workbook, then add two spreadsheets on it and 500,000 rows with one test value in the first cell. Every object is initialised with the using keyword. Memory...
View ArticleNew Post: Creating Hyperlinks in "large" (greater than 41967 links) - corrups...
1) per http://office.microsoft.com/en-us/excel-help/excel-specifications-and-limits-HP010342495.aspx?CTT=1 the max HYPERLINK limit per workbook is 66530. 2) However, if I generate, using Closed XML,...
View ArticleCommented Issue: Error when using SaveAs [8078]
First, let me thank you for this library, it is really awsome and probably saved me a lot of coding time. I have a problems with the SaveAs function. I have an application that is using version 0.63.0...
View ArticleCreated Issue: Open ClosedXML Doc on Android Device [8736]
Last year, I converted a program-generated Excel file from the old Microsoft document API to Open XML. It was clunky and time consuming, until I discovered ClosedXML. Wow! What a difference. It has...
View ArticleCommented Issue: Open ClosedXML Doc on Android Device [8736]
Last year, I converted a program-generated Excel file from the old Microsoft document API to Open XML. It was clunky and time consuming, until I discovered ClosedXML. Wow! What a difference. It has...
View ArticleNew Post: Memory problem with ClosedXML
I was having a similar problem. The quick version is that I was doing a loop in the loop. My spreadsheet have about 250,000 rows. The first pass of the 2nd loop took my 8g machine into an out of memory...
View ArticlePatch Uploaded: #14484
hartez has uploaded a patch.Description:This addresses two possible sources of NullReferenceExceptions when opening a file:1. A Null WorkbookStylesPart - this is the problem when opening the example...
View ArticleUpdated Wiki: Documentation
Some Updates, Hi All, well i am the new care taker, i have been going through the code and i will be starting on some new features, the most requested of which are pivot table. Stay tuned. -Amir...
View ArticleNew Post: Identifier Expected
Hello, I am trying to copy information from one area of a ClosedXML sheet to another. I have the following setup: Sheet1 is just data - as extracted from sql server (using ClosedXML - getting this...
View ArticleClosed Issue: Strange values returned, bad value in cell [8535]
I have an excel file that has a formaula getting its values from other tabs. ClosedXml is returning completely different values. This is very strange behaviour. In cell M1210 there is a value (if...
View ArticleClosed Issue: Style isnt copied with row.copyto [8493]
im trying to populate an XLS template, and to test the best way im using the following code[code]using System;using ClosedXML.Excel;using System.Linq;using System.Diagnostics;namespace...
View ArticleClosed Issue: There isn't a worksheet named '#REF' [8465]
I've attached a simple workbook that can't be opened. It works fine with OpenXML library directly (and incidentally with NPOI and EPPlus).The Exceptions is: There isn't a worksheet named...
View Article