New Post: Read excel file located at web server
As the error said, URI are not supported :) I believe you can use a WebRequest to the file URL, and use its getResponseStream method to have a valid Stream object to pass to the ClosedXML XLWorkbook...
View ArticleNew Post: ClosedXML does not support Excel 2013
Hi All, We have created a service using ClosedXML version 0.76. The feature it includes is to upload and download data in excel. The user is allowed to update minimum data, therefore the sheet is...
View ArticleCreated Unassigned: ClosedXML does not support Excel 2013 [9476]
Hi All,We have created a service using ClosedXML version 0.76. The feature it includes is to upload and download data in excel. The user is allowed to update minimum data, therefore the sheet is...
View ArticleEdited Unassigned: ClosedXML does not support Excel 2013 [9476]
Hi All,We have created a service using ClosedXML version 0.76. The feature it includes is to upload and download data in excel. The user is allowed to update minimum data, therefore the sheet is...
View ArticleCreated Unassigned: SaveAs() is saving my file in IIS Express by default, i...
using (XLWorkbook wb = new XLWorkbook()){ wb.Worksheets.Add(dt, "BPA Supplier Report"); wb.SaveAs(@"C:\ME\Projects\Planogram");}
View ArticleNew Post: Conditional formating of a named range
Need to apply conditional formatting to a named range or other range in which the cells or columns in the range are not contiguous. Below a named range is built from each column in which the value...
View ArticleCreated Unassigned: Encoding problems [9478]
Hi, I create a worksheet stored in MemoryStream then read as a string. I have to pass this string as base64 encoded via ajax reqest. The problem is that i get back something like this "PK[QHó·f...
View ArticleCreated Unassigned: Formula on date value not working [9479]
Hi,I'm trying to import a file containig a formula on a date filed like this:```| A | B || 25/02/2016 | A1+1 |```However when I read the cell B1 the value type is double (I use this...
View ArticleCreated Unassigned: Protecting a Range is handled inefficiently [9480]
When applying cell protection to a Range, this is handled on a cell-by-cell basis. That is very inefficient for large ranges. For example the following test produces an OutOfMemoryException on my...
View ArticleEdited Unassigned: Styling a large Range is handled inefficiently [9480]
When applying cell protection to a Range, this is handled on a cell-by-cell basis. That is very inefficient for large ranges. For example the following test produces an OutOfMemoryException on my...
View ArticleCommented Unassigned: Styling a large Range is handled inefficiently [9480]
When applying cell protection to a Range, this is handled on a cell-by-cell basis. That is very inefficient for large ranges. For example the following test produces an OutOfMemoryException on my...
View ArticleEdited Unassigned: Styling a large Range is handled inefficiently [9480]
__Update__: _If you want to style/protect a whole column or row, use .Columns(..) and .Rows(..), not .Range(..)._When applying cell protection to a Range, this is handled on a cell-by-cell basis. That...
View ArticleCreated Unassigned: Excel header Gettext [9481]
The Excel header Gettext is not returning values in the correct occurrence. I am reading a Excel document and have the same header on all pages....
View ArticleNew Post: Create zip of workbooks and download
I'm trying to create several workbooks in memory and putting them into a zip file that will be returned to the browser for download. Combining the example here to deliver an XLWorkbook for download and...
View ArticleReviewed: ClosedXML 0.76.0 (Mar 08, 2016)
Rated 5 Stars (out of 5) - After I have lot of struggle with Response write method to create excel, now this comes to me as Piece of Cake. This is my life saver from now onwards.
View ArticleNew Post: How to download the generated file?
How to download the generated file and let the user to save it at any location?
View ArticleNew Comment on "Adding DataTable as Worksheet"
Does anyone know how produce the plain excel i.e. without filter and background color? I tried to remove the header background color, border color but not able to do it.
View ArticleCommented Issue: transparent color [6398]
Hi how i can set the backgroundcolor of a cell to a transparent color?Comments: How can i produce the plain excel i.e. no filter and background color?
View ArticleCreated Unassigned: Datatype "DateTime" not set for emtpy cells [9482]
Hello,I am setting the datatype for a range of cells to "DateTime":```rangeTable.DataRange.Column(colNumber).SetDataType(XLCellValues.DateTime);```where rangeTable is an IXLTable and colNumber an...
View ArticleCreated Unassigned: Multiple SaveAs calls causes InvalidCastException [9483]
Version 0.76.0, Test case:``` XLWorkbook w = new XLWorkbook(); IXLWorksheet ret = w.Worksheets.Add("test"); w.SaveAs("test.xlsx"); ret.Cell("A1").Value = "test"; w.SaveAs("test"xlsx");```The first save...
View Article