I have a sheet which have many columns. suppose I have below 6 columns. Number of real columns are more
x temp 1 temp 2 temp 3 temp 4 temp 5 temp 6
101 22
102 23 34
103 56
104 …
I'm using LinqToExcel to retrieve some information and I can get the data from all my columns except from one. This is the Scenario:
I have 3 columns:
Code Name LastName
89 test1 test2
89-2 test3 test4
90 test5 test6
and to get…
I am writing an extension (dll) for a 3rd party program. The main program is using log4net version 1.2.10. I want to use LinqToExcel to read Excel files, which also depends on a newer version of log4net.
When I use the log4net.dll from the main…
I am able to parse the huge set of data from the excel file using the below LinqtoExcel mapping concepts.
My requirement:
How to do LinqtoExcel Mapping when a particular cell in spreadsheet is provided with DataLists options. Is it possible to do…
I am using linqtoexcel for reading from a excel sheet. the problem i face is that i can't read the formula calculated value from a cell, instead i get the actual value of the cell. Is there any way to read the end value of the cell from the excel…
I have an ASP.NET MVC 3 application in which I want to import excel files.
I managed to do this using the linq-to-excel library. But when I deployed the application on IIS I got an error which turned out to be caused by IIS being running on 64bits…
I want to read first row of the excel work sheet using Open XML sdk with LINQ. Is there any way I could get it with out using following code:
WorkSheetPart.Worksheet.Descendants().FirstOrDefault();
The above code is taking long time (almost 1…
This might be a very simple thing for you gurus, but I'm not familiar with C#4 and INTEROP. Therefore, I'm stumped. Here's my problem.
I have a excel column that has duplicate data and I want to trim it down to only unique values. Here's what the…
Im trying to use the Linq to Excel library, and i get stucked into this problem.
I have an excel with a worksheet name, and i need to define the range of the colums that i need to get.
The problem is: how to use these two classes at the same time on…
I'm trying to figure out how to perform a sub-select using Linq. I have an excel sheet with a 'debit' and a 'credit' column. I need to filter out any rows which have a debit column value (> 0.00) that matches up with a credit column value further…
My code :
df=pd.read_csv("File.csv",header=None,delim_whitespace=True)
df.to_excel("output.xlsx",sheet_name=sheet.name,index=False)
i can see File.csv has no data.How to avoid this error.(Data was extracted as csv format and saving in it as…
I have a model to cast an object list using LINQ to excel.
public class Model{
public string Name { get; set; }
public string Date { get; set; }
}
and I am using
var result = excelQueryFactory.Warksheet(0);
But my excel has Null test in…
> I was using .Net core 2.1 for my project. I used LINQ to excel to get
read data from excel file. When i upgrade by my project to .Net core
2.2. it is not working.
my code to read data from excel file is
string pathToExcelFile = "path to excel…
Published and installed program using LinqToExcel throws an "Exception has been thrown by the target of an invocation" exception. Inner exeption is not displayed but on my computer if I run exe file separately w/o another source files there is Could…