New Post: Reading excel sheet without saving
You may need to read use Stream.CopyTo to read everything in the InputStream into a seekable MemoryStream. Otherwise you may have issue with the InputStream not being seekable.
View ArticleNew Post: Reading formatted strings
So your problem really is that you no longer know what timezone the user entered because the date ends up as UTC?
View ArticleNew Post: Reading formatted strings
Hi Ian, I found out that in Excel you can format a datetime cell (double) in ISO8601 but you can't add the timezone value (es. +02:00) to the format string. So magically my problem is solved. Thanks...
View ArticleNew Post: Reading excel sheet without saving
Ok thanks, modified code as per you suggested. Is this ok? MemoryStream memStream = new MemoryStream(); Stream myStream = FileUploadControl.PostedFile.InputStream; myStream.CopyTo(memStream);...
View ArticleNew Post: AutoSize columns in excel sheet
Hi, I am using ExcelDataReader nuget. It works pretty fine. But causes a problem if i have the first column displaying data such as '####'. This is because the column size is shrink-ed. If i resize it...
View ArticleNew Post: AutoSize columns in excel sheet
That sounds a bit strange because as far as I know displaying ### is just a ui thing and is not actually reflected in the data value. I tried it myself with a spreadsheet and it worked ok.Are you able...
View ArticleReleased: 2.1.2.0 (Jan 30, 2014)
FixesFixes for some SSRS sourced files (out of range checks) Missing columns on xlsx generated by google docs Corrupt xls goes into infinite loop No data on xlsx generated by google docs Xlsx with...
View ArticleUpdated Release: 2.1.2.0 (Jan 30, 2014)
FixesFixes for some SSRS sourced files (out of range checks)Missing columns on xlsx generated by google docsCorrupt xls goes into infinite loopNo data on xlsx generated by google docsXlsx with multiple...
View ArticleCommented Unassigned: Inaccurate column count causes data to be missed. [12605]
Discussion [https://exceldatareader.codeplex.com/discussions/474291](https://exceldatareader.codeplex.com/discussions/474291)I am trying to read in a large amount of data using your wonderful tool,...
View ArticleCreated Unassigned: Excel Versions Supported? [12738]
Hi,I would like to know which versions of Excel is supported? I tried importing a Microsoft Excel 5.0/95 Workbook and had an Array out of bounds error and also the column headers has lots of special...
View ArticleNew Post: AutoSize columns in excel sheet
Hi, I was mistaken. It does reads the data when present in ### format. I am attaching an Excel sheet. Without editing or saving , try reading the file. ExcelDataReader will return no data. Now just...
View ArticleCommented Issue: "BIFF Stream error" when converting to dataset [11636]
Hi,I am using the 2.1 beta binaries.when trying to open a SQL server reporting services generated excel, and converting to a dataset, I get the following exception:ArgumentException was unhandled "BIFF...
View ArticleCommented Task: Nuget package [11518]
I can see this package is not updated on Nuget yet.Comments: ** Comment from web user: vertigo093i ** Updated package with latest 2.1.2 binaries.
View ArticleCommented Task: Nuget package [11518]
I can see this package is not updated on Nuget yet.Comments: ** Comment from web user: Ian1971 ** Brilliant, thanks. I have uploaded it to nuget
View Article