New Post: Cell.Value throwing System.FormatException
I'm trying to parse an excel, but the cells that have formatted percentage values are throwing System.FormatException when I try to access the their Value. Here is the string representation of the...
View ArticleNew Post: Cell.Value throwing System.FormatException
Create an issue and attach the file.
View ArticleCreated Unassigned: CopyTo one to another workbook style error [9389]
System.Collections.Generic.KeyNotFoundException mscorlib.dll!System.Collections.Generic.Dictionary<int,System.__Canon>.this[int].get(int key) + 0x8a >...
View ArticleEdited Unassigned: CopyTo one to another workbook style error [9389]
```System.Collections.Generic.KeyNotFoundException mscorlib.dll!System.Collections.Generic.Dictionary<int,System.__Canon>.this[int].get(int key) + 0x8a >...
View ArticleNew Post: CopyTo one to another workbook style error
MDeLeon wrote: Still can't download it. Create an issue and attach the file. Thanks. I create an issueshttps://closedxml.codeplex.com/workitem/9389
View ArticleNew Post: Get headers from gridview c#
Hello. Is it possible to get the data directly from the GridView itself and not the table? When I get the data from the DataTable, I get the headers from the actual table, which are in English, but I...
View ArticleNew Post: Group Items in a pivot table
Is there a way using ClosedXML to group items as described here http://office.microsoft.com/en-us/excel-help/group-items-in-a-pivottable-report-HP010342560.aspx. Thanks.
View ArticleNew Post: Passing style-able objects
Hi, everyone. I'm working on a project where I am applying the same styling to various things. Sometimes a row, sometimes a cell, sometimes a range. I've been trying to find a way to write a single...
View ArticleNew Post: Get headers from gridview c#
Use the gridview's data source. The right-to-left option is of the application/installation, not the workbook.
View ArticleNew Post: Passing style-able objects
var style = XLWorkbook.DefaultStyle; // Change style cell/range/whatever.Style = style;
View ArticleNew Post: Passing style-able objects
That is a cool idea, and I can definitely use that for some things. However, there's often variations between section styles, with MOST of it the same, but a few things different. So I'd still like to...
View ArticleNew Post: Passing style-able objects
var alignment = style.Alignment; cell.Style.Alignment = alignment; More granular than that and you have to go to the individual properties themselves.
View ArticleReopened Unassigned: memory usage went to 98% when trying to save large data....
Hi,I am new to ClosedXML. I got one requirement to save 16 tables data into single excel file.Each table will have 200k records.I used ClosedXML and application got hanged. Memory usage went to...
View ArticleNew Post: Is there a way to create and save excel file in buffered way?
Hello, I have a requirement to save large data into excel file. Is there a way to create and save excel file in buffered way? I mean to ask save 2k records once and then fetch another 2k records and...
View ArticleCreated Unassigned: Is there a way to create and save excel file in buffered...
Hello,I have a requirement to save large data into excel file. Is there a way to create and save excel file in buffered way?I mean to ask save 2k records once and then fetch another 2k records and...
View ArticleClosed Unassigned: memory usage went to 98% when trying to save large data....
Hi,I am new to ClosedXML. I got one requirement to save 16 tables data into single excel file.Each table will have 200k records.I used ClosedXML and application got hanged. Memory usage went to...
View ArticleNew Post: Text File Imports
So far, the package works very, very well with datatables created from database data sources. Is it possible to import a delimited text file into the workbook? I know of one package which allows for...
View ArticleNew Post: Text File Imports
You have to parse the file and then feed the data to ClosedXML. This is because there are a million and one ways to create a text file with data.
View Article