Reviewed: ClosedXML 0.69.1 (Mar 28, 2014)
Rated 5 Stars (out of 5) - Thank-you so much! The code is very easy to use. There is enough documentation to get you going. And it is all very logical. Exactly what I was looking for. (Creating excel...
View ArticleNew Post: Referring a formula in another worksheet
In C#, I am using cell.SetFormulaA1("SUM('sheet1'!C8:'sheet1'!J8) + SUM('sheet2'!C9:'sheet2'!J9)"); to set a formula that uses other worksheets. But then when I do this: string content; if...
View ArticleNew Post: Append to excel file
Hello, I have an excel file (created with ClosedXML library) and I want to append new rows to existing excel file (same format as the original). I was thinking about reading the original file and get...
View ArticleNew Comment on "Pivot Table example"
Hi, I think I have found a bug in the pivot generation process. If a data range is defined that includes a cell in it, that has text data that is bigger than 256 characters, the resulting excel file...
View ArticleNew Post: Add datatable in customstarting cell range
I want to use this method wb.Worksheets.Add(dataTable, "Data") but I need to add the date range in the first 2 cells of my xml. I tried to add the datatable, copy the whole data a couple of cells...
View ArticleNew Post: Turn off header filtering
When my excel sheet loads, the headers are filtered. Can this be turned off? Thanks
View ArticleNew Post: Turn off header filtering
Got It: DataTable dt = ds.Tables[0]; var clsXLWorkbook = new XLWorkbook(); var ws = clsXLWorkbook.Worksheets.Add(dt); ws.Tables.First().ShowAutoFilter = false;
View ArticleCommented Unassigned: WorkSheet CopyTo doesn't transform Named Ranges...
I'm trying to replicate a Worksheet several time in a Workbook and I'm doing using the following code:```IXLWorksheet worksheet = modelSheet.CopyTo("SheetName");```When I open the generated document...
View ArticleNew Post: Table & Charting
Given that I'm probably going to go with the third option here: "A last resort would be to modify the file with ClosedXML and then modify the chart with another library like the OpenXML SDK." Would it...
View ArticleNew Post: Cells.InsertDataTable Time values are recognized as String
I do hope that the developer of this library will improve the InsertDataTable method so that I won't come up with this kind of code again. Many thanks in advance. :)
View ArticleSource code checked in, #80797
Rename tests and their files to comply to coding conversions
View ArticleCommented Unassigned: Pivot Tables Values Problem [9088]
Based on the example [Pivot Tables](https://closedxml.codeplex.com/wikipage?title=Pivot%20Table%20example) , do the following steps to reproduce the problemExcellent example . It works perfect, but if...
View ArticleCommented Unassigned: Pivot Tables Values Problem [9088]
Based on the example [Pivot Tables](https://closedxml.codeplex.com/wikipage?title=Pivot%20Table%20example) , do the following steps to reproduce the problemExcellent example . It works perfect, but if...
View ArticleReviewed: ClosedXML 0.69.1 (Apr 09, 2014)
Rated 5 Stars (out of 5) - This project has saved me countless frustrating hours. I was able to do exactly what I needed to do with zero issues. Thanks! I suggest setting up a donations box.
View ArticleCreated Unassigned: Setting of Initial Zoom of Spreadsheet [9289]
It would be nice if the Zoom level (View Tab) for a worksheet could be set via ClosedXML.The following discussion goes into a bit more detail of how the feature could be...
View ArticleNew Comment on "Conditional Formatting"
How can i check conditional format with TimeSpan apart from this var condFormat1 = worksheet.Range(3, 8, 32, 8).AddConditionalFormat().WhenGreaterThan("00:30:00").Fill.SetBackgroundColor(XLColor.Red);
View ArticleNew Comment on "Conditional Formatting"
How can i check conditional format with a TimeSpan
View Article