New Post: Read Formula?
Thanks for the reply - it would be a handy feature to have. In my case I can infer the formula by comparing the source and destination values to get the multiplier value (e.g. 125%).
View ArticleReviewed: 2.1.2.0 (May 12, 2014)
Rated 5 Stars (out of 5) - Easy to use, simple. Thank you
View ArticleNew Post: Request for a "Proper" namespace.
Even though it might be something really trivial, I would suggest to change the namespace of this library to follow the guidelines mentioned in the Names of Namespaces page. It doesn't change the...
View ArticleNew Post: Request for a "Proper" namespace.
It's a good idea, but would be a breaking change. What namespace do you suggest?
View ArticleNew Post: Request for a "Proper" namespace.
The name of the dll, excel.dll, has also caused problem for us. We have had to rebuild the Excel Data Reader under a new name (ExcelDataReader.dll) in order to avoid conflicts with another excel.dll...
View ArticleNew Post: Request for a "Proper" namespace.
I see in your profile that you're CTO of Release Mobile. If you developed that working there, you could use that as a Prefix. In my case, most projects I ever do are not linked to my employer so I use...
View ArticleNew Post: Request for a "Proper" namespace.
DanielRousseau wrote: I think that ExcelDataReader would be a good name for both the namespace and the dll. The namespace should contain a prefix before the product itself. I found this library when I...
View ArticleNew Post: Request for a "Proper" namespace.
That all makes sense. It wouldn't be right to use my company name because I didn't create the library, just taken over supporting it. I guess something like ExcelTools.ExcelDataReader would do.
View ArticleNew Post: Can't open an excel file of type "Excel 2 Worksheets"
Hi there, I'm trying to open a file that Excel recognizes as type "Excel 2 Worksheets" but when I open it with ExcelReaderFactory.CreateBinaryReader(stream), the reader says the file is invalid. Is it...
View ArticleNew Post: Can't open an excel file of type "Excel 2 Worksheets"
I think that format is not supported.
View ArticleNew Post: Can't open an excel file of type "Excel 2 Worksheets"
Yes, this is my conclusion too :-(
View ArticleNew Post: Pass in header row value?
Have you considered (or is it possible) to work with a header row passed into the method? I need to work with templated workbooks where the various templates place the header row at anything from row 3...
View ArticleNew Post: Reading excel sheet without saving
Thanks for this. I tried this (i.e. copy to memory stream) and yes, it does work. This is very helpful for using this on Azure since we don't want to save files to local storage.
View ArticleCommented Unassigned: ExcelReaderFactory.CreateBinaryReader fails [12992]
Pretty simple; code is as follows: FileInfo thisfinfo = Utilities.GetFileInFolderByIndex(1, wipboardreports_folderpath); FileStream stream = File.Open(thisfinfo.FullName, FileMode.Open,...
View ArticleNew Post: Excel sheet to array
Hello, I'm trying to read the excel sheet and save all of its data into the 2D array. The problem is, that enything I do I get the error: System.NullReferenceException. I did FOR loops, I used foreach...
View ArticleCommented Unassigned: Multithreaded Read [12936]
There seems to be an issue in Excel/Log/LogManager.cs if you concurrently read from multiple different xlsx files.I fixed the issue by moving the sync-lock to cover up ContainsKey-Check tooFrom ```...
View ArticleNew Post: Excel sheet to array
You may be best off reading it use the idatareader interface rather than a dataset. It will be quicker anyway. Not sure why you are getting null reference exceptions off top of my head though.From:...
View ArticleCommented Unassigned: Multithreaded Read [12936]
There seems to be an issue in Excel/Log/LogManager.cs if you concurrently read from multiple different xlsx files.I fixed the issue by moving the sync-lock to cover up ContainsKey-Check tooFrom ```...
View ArticleNew Post: Excel sheet to array
Thank you. Unfortunately after spending few more hours with tries it looks like I'm not understanding the iDataReader feature - it looks easy but I'm failing everytime I try to run the...
View Article