Source code checked in, #c07fba02616522cdb085c1edf89ff01a93797e2c
AdjustToContents and cell.GetFormattedString now use formulas
View ArticleNew Post: Columns.AdjustToContents - Problem with formula result
Pick the latest source code.
View ArticleNew Post: PivotTable row and column labels broken by recent change?
Interesting, Are you opening an existing file with a pivot table with ClosedXML? If so please attach the file to an Issue ticket (remove/replace any data that can't be shared) If you're creating a file...
View ArticleNew Post: XLSM save file have disabled buttons
Pick up the latest source code and try again because I can open and save the file no problem and the output file opens fine in Excel. The corrupted one you shared is indeed bad though. I just can't...
View ArticleNew Post: CustomXMLPart
You need to use the OpenXML SDK to manipulate the XML files directly.
View ArticleNew Post: Copy Worksheet is very very slow
I'd say compile to x64 and create the file directly without the two steps. Another thing that doesn't make sense is why would it run out of memory when you're creating a file with 200 sheets and not...
View ArticleNew Post: InsertRowsBelow bug?
Please attach the file because I can't reproduce it. The following works as expected:var wb = new XLWorkbook(); var ws1 = wb.AddWorksheet("Sheet1"); ws1.Range("A1:C20").Value = "X";...
View ArticleNew Post: Excel 2013 - 2010 compatibility
long/old thread ataziz, How can I reproduce your error?
View ArticleClosed Unassigned: creating multiple files at once [9328]
hi,I have an issue when creating multiple excel files. The problem is that every single file who is opened, opens is the same instance of excel (i.e. opened 3 excel files, 1 excel.exe in task manager)....
View ArticleNew Post: Copy Worksheet is very very slow
I compile with ‘ANY CPU’, and I’ve verified that it is not running 32 bit. (Task manager does not have the ‘*32’ by it). So would compiling my app as X64 really make a difference?Through ask manager,...
View ArticleClosed Unassigned: Disable Autofilter in workbook [9330]
Hi,When im exporting workbook i could see Filter enabled in header. I wants to disable filter option. Thanks,RamComments: worksheet.AutoFilter.Clear();
View ArticleNew Post: Copy Worksheet is very very slow
Can't do that, there are so many scenarios where you don't have access to a disk. Back to your problem, if you can copy 200 sheets into a single file then you should be able to create the file one...
View ArticleNew Post: Copy Worksheet is very very slow
Originally, I opened a workbook, and wrote everything to it, and then did a 'saveas' at the end. But it would never finish, it kept blowing for memory.The change I made was to put each section into a...
View ArticleNew Post: Copy Worksheet is very very slow
I can't get past the fact that either way you end up with a huge file you need to save, what happens before shouldn't be an issue (you still need to save it). In the case where you copy the 200 sheets...
View ArticleNew Post: Copy Worksheet is very very slow
Other than putting the code block inside of a {} and calling the .Dispose() method before the }, I'm not sure what else I can do?
View ArticleNew Post: Copy Worksheet is very very slow
have you tried something like this? private static void Main(string[] args) { var wb = new XLWorkbook(); foreach (var sheetNum in Enumerable.Range(1, 200)) { CreateSheet(wb, sheetNum); }...
View ArticleNew Post: Copy Worksheet is very very slow
Instead of having the using from the 'createsheet' as a separate method, I had the using inline. However, unless I am mistaken, that } after CreateSheet should cause a garbage collect no different than...
View ArticleNew Post: InsertRowsBelow bug?
Sometimes when write the date to the excel template file and some merges in this maybe cause difference between the closedxml, and I had create a lite demo show it if you have time....
View ArticleSource code checked in, #37812ba6ddd3d6e3539d9083da92239c14fda275
Memory and performance improvements
View Article