Created Unassigned: Problems with references in an excel sheet [13099]
Hi guys,we're having an issue while reading our excel sheets. It seems that if a cell value references to another cell the value is always treated as a number.E.g. Having a text value of 0004 in...
View ArticleCreated Unassigned: Columns skipped when DIMENSION record is incorrect [13101]
A spreadsheet I've encountered in the wild doesn't conform properly to the Excel binary format spec, and in the DIMENSION record uses the zero based index of the last column, rather than the zero based...
View ArticleCommented Unassigned: Columns skipped when DIMENSION record is incorrect [13101]
A spreadsheet I've encountered in the wild doesn't conform properly to the Excel binary format spec, and in the DIMENSION record uses the zero based index of the last column, rather than the zero based...
View ArticleCommented Unassigned: Columns skipped when DIMENSION record is incorrect [13101]
A spreadsheet I've encountered in the wild doesn't conform properly to the Excel binary format spec, and in the DIMENSION record uses the zero based index of the last column, rather than the zero based...
View ArticleCommented Unassigned: ExcelCsvReader - CSV reader implementation [13097]
This is my contrib to the Library:a CSV data reader implementation to extend ExcelReaderFactory.Comments: ** Comment from web user: wizardgsz ** Hello and thanks for your feedback.No unit-tests for the...
View ArticleCommented Unassigned: Access denied to temp path [11801]
Receiving and error when reading from stream. Access denied to temp path....? It happens when calling this method ExcelReaderFactory.CreateOpenXmlReader. Obviously if I'm an admin on the box I dont get...
View ArticleCommented Unassigned: ExcelCsvReader - CSV reader implementation [13097]
This is my contrib to the Library:a CSV data reader implementation to extend ExcelReaderFactory.Comments: ** Comment from web user: wizardgsz ** Bugfix in TokenizeLine, last "empty" token:``` // ... if...
View ArticleNew Post: INVISIBLE/HIDDEN Excel Columns
When I read the data from excel file and load it onto my C# application, the hidden columns are also fetched. How can I avoid or identify the hidden columns??
View ArticleReviewed: 2.1.2.0 (Jul 08, 2014)
Rated 4 Stars (out of 5) - Easy to use and implement :)
View ArticleNew Post: Read functions lterally instead of results
Hello, I am using the AsDataSet feature of the binary reader. How can I determine if a value is set by a function in Excell or was a 'hard' value? Thank you!
View ArticleNew Post: Excel Data Reader Version Difference
I notice that the version on CodePlex and NuGet do not match up. It appears NuGet has a newer version of the library. Will CodePlex no longer be updated?
View ArticleNew Post: Design Questions/Suggestions
I've tried this out in my app and the functionality and speed are great. However some of the design choices have me a bit perplexed. I had to do some surgery to get it working with my existing code and...
View ArticleNew Post: Design Questions/Suggestions
Thanks for showing an interesting and a desire to help. I can't really comment on the origins of some of the design decisions as I really started maintaining this project a year or two ago when I found...
View ArticleNew Post: Design Questions/Suggestions
not sure you are correct in your first point about it loading the entire workbook as a dataset Yes, you're right. I got into it a little deeper, and found that you can pick a worksheet individually by...
View ArticleNew Post: Design Questions/Suggestions
The version discrepancy is because the only changes were fixes to the nuget package, and I didn't have time to update the codeplex download version - and little motivation to do so as there are no real...
View ArticleNew Post: Reading excel sheet without saving
This does not work for me.... I get a read timeout error? also tried as per MS: Stream myStream = FileUpload1.FileContent; on this I get an invalid signature Anyone have this working ok? Thanks
View ArticleNew Post: Reading excel sheet without saving
Never mind me silly got it to work: if (fileExt.ToUpper() == ".XLS" ) { excelReader =ExcelReaderFactory.CreateBinaryReader(memStream); } if (fileExt.ToUpper() == ".XLSX") { excelReader =...
View ArticleNew Post: .NET 2.0 DLL not working without MS Excel installed
I use the .NET 2.0 DLL to extract Data from several Excel Data Sheet. Everything is working on my development machine. After deploying the code to a local test server, it's not working anymore. I...
View ArticleNew Post: .NET 2.0 DLL not working without MS Excel installed
You definitely don't need excel installed.
View ArticleUpdated Wiki: Home
Project Description Lightweight and fast library written in C# for reading Microsoft Excel files ('97-2007).Cross-platform:- Windows with .Net Framework 2- Windows Mobile with Compact Framework- Linux,...
View Article