Project Home Page: https://github.com/paulyoder/LinqToExcel
2
votes
1answer
39 views
C# - LINQToExcel - Null Values
I'm trying to learn how to use LINQTOExcel to query a CSV file. Following the tutorial on the site I adapted their example to work with my data (filename is passed to it via an OpenDialog component):
...
2
votes
2answers
206 views
Using LinqToExcel to Create XML
I'm trying to build an XML file from an Excel spreadsheet (no header row). This will be part of a service on a server, so I really don't want to use the MS Office PIO files. I found LinqToExcel on ...
1
vote
2answers
92 views
Sub-Select Using LinqToExcel
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 ...
1
vote
1answer
384 views
Question considering LINQ to Excel
I'm reading data from an XLS document, and I'm using the superb LINQ to Excel library.
The problem I have is more of a problem with dealing with LINQ.
I read new and updated incidents from an excel ...
0
votes
1answer
24 views
Define a worksheet name and a WorksheetRange
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 ...
0
votes
1answer
125 views
How do i use LinqToExcel to get cell values contained in the excel file
I am using this code to retrieve the receipient name and receipient number but the recpt.receipient_name and recpt.receipient_number are null.
The excel table is of this format
Name Number
...
0
votes
1answer
160 views
How do i use LinqToExcel to get sheet names of an excel file
I am using LinqToExcel and i want to be able to get the names of all sheets in an excel file and compare it with an input from my html form such that when the input does not match any of the names on ...
0
votes
1answer
141 views
Running a 32-bit window service which loads a 32-bit dll as a 64-bit service
Here's the situation -
A window service which I am coding uses Linq2Excel, which insist the invoking application to be complied against x86.
However, the window service is to be installed on a ...
0
votes
1answer
283 views
LINQ: Read an Excel file and then writing to database
I am taking rows from an Excel file using LinqToExcel and then writing to SQLServer using LINQToSQL. It DID create records in the database but with null values. I wonder if I need to map the Mac ...
0
votes
1answer
198 views
Database redesign then reload approach using linq to excel and entity framework
So I've got a few tables with a lot of data. Let's say they are table A, B and C. I want to add auto increment ID fields for each of those tables, normalize them by swapping some fields between the ...