New Post: want to check excel sheet contains formula or not? IS it possible...
I want to check excel sheet contains formula and Filter in any cell? IS it possible in Excel Data reader?
View ArticleCreated Unassigned: I want to check excel sheet contains formula and Filter...
I want to check excel sheet contains formula and Filter in any cell? IS it possible in Excel Data reader?
View ArticleNew Post: Microsoft Excel 97-2003 Worksheet (.xls) bad signature override?
Hi All Well i had the same issue and i think i figured out a solution. 1- Open the file in microsoft excel 2- File > Export > Change File Type 3- I picked Excel 92-2003 Workbook (*.xls) then used...
View ArticleCommented Unassigned: Example of excel file returning no datasets -...
FileStream stream = File.Open(excelFilePath, FileMode.Open, FileAccess.Read);excelReader = Excel.ExcelReaderFactory.CreateOpenXmlReader(stream); DataSet result = excelReader.AsDataSet();result is null...
View ArticleCommented Unassigned: Can't reference column by name? (non-DataTable) [13568]
How do I reference a field by it's (first) column name when not using a DataTable? while (excelReader.Read()){ var branch = excelReader["Branch"].ToString(); // <-- I get a...
View ArticleCreated Unassigned: Can't read columns when header row has a trailing space...
I have an issue reading a spreadsheet in when the header row has a trailing space on all the header column names.I can usually do this, row["ColumnName"] but if when it has a trailing space, I can't...
View ArticleCreated Unassigned: Numeric strings are converted to numbers [13688]
When reading an .xlsx sheet with IExcelDataReader.AsDataSet strings that only contain numbers are converted to decimalslike 0100 becomes 100.0If I use ' to force a string it works.I would be greatful...
View ArticleCommented Unassigned: Numeric strings are converted to numbers [13688]
When reading an .xlsx sheet with IExcelDataReader.AsDataSet strings that only contain numbers are converted to decimalslike 0100 becomes 100.0If I use ' to force a string it works.I would be greatful...
View ArticleCommented Unassigned: Numeric strings are converted to numbers [13688]
When reading an .xlsx sheet with IExcelDataReader.AsDataSet strings that only contain numbers are converted to decimalslike 0100 becomes 100.0If I use ' to force a string it works.I would be greatful...
View ArticleCreated Unassigned: excel data reader does not allow to read excel file...
Hi,I am using excel data reader for reading excel files simultaneously using some queueing mechnism.I am facing below mentioned issue when two excel files have same data. I have tried to dig into code...
View ArticleCommented Unassigned: Numeric strings are converted to numbers [13688]
When reading an .xlsx sheet with IExcelDataReader.AsDataSet strings that only contain numbers are converted to decimalslike 0100 becomes 100.0If I use ' to force a string it works.I would be greatful...
View ArticleCommented Unassigned: Numeric strings are converted to numbers [13688]
When reading an .xlsx sheet with IExcelDataReader.AsDataSet strings that only contain numbers are converted to decimalslike 0100 becomes 100.0If I use ' to force a string it works.I would be greatful...
View ArticleCommented Unassigned: Numeric strings are converted to numbers [13688]
When reading an .xlsx sheet with IExcelDataReader.AsDataSet strings that only contain numbers are converted to decimalslike 0100 becomes 100.0If I use ' to force a string it works.I would be greatful...
View ArticleCommented Unassigned: Numeric strings are converted to numbers [13688]
When reading an .xlsx sheet with IExcelDataReader.AsDataSet strings that only contain numbers are converted to decimalslike 0100 becomes 100.0If I use ' to force a string it works.I would be greatful...
View ArticleCreated Unassigned: ExcelDataread cannot read google sheet saved as xlsx [13737]
ExcelReaderFactory.CreateOpenXmlReader(stream) throws exception when you are reading google sheet saves as xlsx.
View ArticleNew Post: How do you select a Worksheet for the IExcelDataReader?
The following code seems to read from the first worksheet. How do I select a different worksheet? FileStream stream = File.Open(@"D:\Transfer\NameSample.xls", FileMode.Open, FileAccess.Read);...
View ArticleCreated Unassigned: Trouble accessing ICSharpCode.SharpZipLib.dll in 3rd...
I am writing a plugin to use within Encompass360 SDK, a loan processing system.Encompass360 has an interface to upload my .NET dll plugin to this system, which works fine.I am not trying to use Excel...
View ArticleCreated Unassigned: Excel Data Reader unable to read all columns data [13764]
I am using [Excel Data Reader](https://exceldatareader.codeplex.com/) to read my excel. my code is``` IExcelDataReader reader = null; FileStream stream = System.IO.File.Open(file.FileName,...
View ArticleCreated Unassigned: Can i read xls file from given url?.. Help me [13767]
i can read the xls and xlsx file by using fileupload control in my aspx page. but i can't read the file from the server(given xls file url). please help me
View ArticleCreated Unassigned: Reading 2 excel files simultaneously gives an exception...
I am reading two excel files simultaneously. Here is my Code```Parallel.Invoke(()=> { FileStream stream = File.Open(@"C:\Projects\TPD.xlsx", FileMode.Open, FileAccess.Read); IExcelDataReader...
View Article