0
votes
2answers
41 views
How do you generate an Excel 2007 file in ASP.NET without getting a warning message?
Whenever I open an xls file I generated on my ASP.NET page with Excel 2007, I get the following error:
The file you are trying to open, 'filename.xls', is in a different format th …
1
vote
1answer
12 views
Reading Excel file w/ADO.net - no data (or tables)
This is my first attempt to read an Excel 2007 file via ADO.net, and I must be missing something b/c when I try to run the query, I get an exception. When I started looking, it's …
0
votes
5answers
52 views
Is it possible to View an Excel file on Linux
I have a testing package which uses an Excel spreadsheet to manage the Tests. It's written in Java and parses the Spreadsheet, then executes the tests. It runs on Windows and Linux …
0
votes
6answers
50 views
Select uniques, and one of the doubles
I have a table with columns A, B and C.
Column A might have duplicates.
I need:
All rows that have an unique value in A
One of the rows that has one of the duplicate values in A …
0
votes
2answers
15 views
How do you delete rows in spreadsheet where condition met and location of condition unknown
I need to find the word Overdue" and Due in a spreadsheet but the column they appear in will be variable as will the number of records (rows). i need to delete all rows that do NO …
0
votes
1answer
11 views
Conditionally linking cells in Excel 2007
I have a series of worksheets in an Excel spreadsheet. Each worksheet details a set of requirements, along with each component necessary to make that requirement happen, broken dow …
0
votes
3answers
43 views
Read the ActiveCell content in Excel using VSTO
Hi there,
I'm trying to read the ActiveCell from within an Excel Add-in but not getting very far. Anyone any ideas?
Excel.Window W = this.Application.ActiveWindow as Excel.Window …
2
votes
1answer
34 views
Custom LINQ provider for Excel spreadsheets?
Does anyone know a good custom LINQ provider to query data from Excel spreadsheets?
0
votes
3answers
33 views
How to do: sum columnB where columnA is XYZ - in Excel?
Hi
I have a bunch of columns and some columns which are values I need to add.
Lets say I want to sum columnB (which could be $) where column A is banana, how do I do that?
Thing …
1
vote
2answers
18 views
can you delete a macro when a file is copied but preserve it in the original?
I have a workbook called Expenses Sheet.xls located in R:\LGS\FINANCES\ losts of people refer to it and often save a copy so they can manipulate the data. There is an autosave ma …
-1
votes
2answers
90 views
How to create csv file from unequal length arrays in Perl?
I have to parse a file so that I can import it to excel. So, I thought the best way was to create a csv file. In this file, I have to divide contents into different categories and …
0
votes
1answer
16 views
Excel form hides behind open windows, after browsing for file, when I open from a vb.net application.
I have a vb.net program that opens up an excel workbook and runs a macro ("Report") in that workbook when a button is clicked.
//Workbook with macro and form
xlWorkbook = xlApp. …
0
votes
5answers
54 views
Parsing excel sheet in C#, inserting new values into database.
I am currently working on a project to parse an excel sheet and insert any values into a database which were not inserted previously. The sheet contains roughly 80 date-value pair …
0
votes
1answer
20 views
How to find the named range of a cell - VSTO
I have generated a series of rows using C# and VSTO. I have basically loaded a couple of rows with data and have given each cell a NamedRange. My question is how would I, knowing t …
0
votes
1answer
22 views
setting Excel cell format from C# using late binding
I'm using late binding to launch Excel from C# and copy data into it (Type.GetTypeFromProgID("Excel.Application"), Activator.CreateInstance, InvokeMember, and all that). I have thi …
