Commented Unassigned: Strange FileNotFoundException [9365]
I've got a worksheet with half a million rows. After writing values to cells in the first 20 rows. I call Save() on the workbook. That produces the following exception:Could not find file...
View ArticleNew Post: Question about Themes in ClosedXML
I noticed that the XML theme document generated by ClosedXML is "theme.xml", but the standard theme file name for OpenXML is "theme1.xml". This generates a file that is still valid in Excel, but has...
View ArticleNew Post: Question about Themes in ClosedXML
The file names and relationships are handled by the OpenXML SDK (which ClosedXML uses underneath).
View ArticleNew Post: Existing Excel File Fill table Corruption
See Issue 9360 When starting with the template file given and filling with data, the table id starts at 2 if you look at the xml generated. I have had a hard time tracking down where this is setup....
View ArticleReviewed: ClosedXML 0.74.0 (Sep 05, 2014)
Rated 5 Stars (out of 5) - This project is so awesome for Excel automation!
View ArticleNew Post: TimeSpan handling
Is there a reason why TimeSpan data types are handled wiered when values contains value over 24 hours. Even if TimeSpan data type is set for cell the value will be reformatted by Excel when opened. In...
View ArticleNew Post: TimeSpan handling
It's the way .NET interprets timespan strings: TimeSpan ts; TimeSpan.TryParse("25:00:00", out ts); Console.WriteLine(ts.TotalHours); // 600 hours = 25 days = 25.00:00:00
View ArticleNew Post: OpenXML 2.5 not totally compatible to 2.0?
The latest ClosedXML and OpenXML packages from Nuget are still not compatible. My application threw the exception System.TypeLoadException: Could not load type...
View ArticleReviewed: ClosedXML 0.74.0 (set 09, 2014)
Rated 5 Stars (out of 5) - Easy, powerful, fast!
View ArticleCreated Unassigned: IF-function doesn't handle 2 arguments [9366]
Hi!Currently ClosedXML is only able to handle the "IF"-function if supplied with 3 arguments, but this function can also be called with only 2 arguments. ie. something like "IF(M49="111";94)" will...
View ArticleClosed Unassigned: Strange FileNotFoundException [9365]
I've got a worksheet with half a million rows. After writing values to cells in the first 20 rows. I call Save() on the workbook. That produces the following exception:Could not find file...
View ArticleNew Post: OpenXML 2.5 not totally compatible to 2.0?
You have to use OpenXML dll 2.0 with ClosedXML for .Net 3.5 OpenXML dll 2.5 works fine with ClosedXML for .Net 4+
View ArticleSource code checked in, #0c9631b6c172e5b51ce2fb9470781bf07c24b670
Update IF function to support 2 parameters
View ArticleClosed Unassigned: IF-function doesn't handle 2 arguments [9366]
Hi!Currently ClosedXML is only able to handle the "IF"-function if supplied with 3 arguments, but this function can also be called with only 2 arguments. ie. something like "IF(M49="111";94)" will...
View ArticleNew Post: How to remove table theme?
theme property must be set as: ws.Tables.First().Theme = ClosedXML.Excel.XLTableTheme.None; So, your code must look like this: ws.Tables.First().ShowAutoFilter = false; ws.Tables.First().ShowRowStripes...
View ArticleCommented Unassigned: System.OutOfMemoryException in v0.68.0.10, regression?...
Hello,In order to improve the speed of reading/writing of Excel files, I have recently updated ClosedXML from v0.64.0.0 to v0.68.0.10.The kind of Excel file that I deal with is a big file, embedding a...
View ArticleCommented Issue: Exception of type 'System.OutOfMemoryException' was thrown....
I am getting this when I do " workbook.SaveAs(filename) ". Is there anyway I can fix this? ThanksComments: I looked at issue #8056 and compiling 64 bit helped it get farther....it actually writes out a...
View ArticleCommented Unassigned: System.OutOfMemoryException in v0.68.0.10, regression?...
Hello,In order to improve the speed of reading/writing of Excel files, I have recently updated ClosedXML from v0.64.0.0 to v0.68.0.10.The kind of Excel file that I deal with is a big file, embedding a...
View ArticleCommented Issue: Exception of type 'System.OutOfMemoryException' was thrown....
I am getting this when I do " workbook.SaveAs(filename) ". Is there anyway I can fix this? ThanksComments: OK, I was able to run to completion if, right after the SaveAs, I set the Workbook and...
View ArticleCommented Issue: Exception of type 'System.OutOfMemoryException' was thrown....
I am getting this when I do " workbook.SaveAs(filename) ". Is there anyway I can fix this? ThanksComments: I don't get it, SaveAs is the last thing you do, so if you do the SaveAs and then exit the...
View Article