Tagged Questions
The excel-interop tag has no wiki summary.
4
votes
2answers
696 views
Converting HTML table to excel sheet using C#
I have html table in Microsoft.Office.Interop.Outlook.MailItem body and I just need to fill excel sheet with this table using C# for desktop application. Could any one help me in this regard. Thanks
4
votes
2answers
123 views
Windows Forms above Excel
I have a form which spawns from an excel add-in written with VSTO.
I would like the form to remain always above the excel spreadsheet, but still allow the user to interact with the sheet below it.
...
4
votes
1answer
549 views
Adding buttons to spreadsheets in .NET (VSTO)
Using VSTO or some related technology, is it possible to programmatically embed a button in a cell of an Excel worksheet, and configure it to call a C# function when it is clicked?
How?
Thanks.
3
votes
1answer
29 views
What is the difference between these two calls / ways to read String from Excel?
What is the difference between these two different ways to read a string from an Excel speadsheet while working with the Excel Interop in C#?
String node1 = ((Excel.Range)ws.Cells[row, ...
3
votes
1answer
86 views
Writing to Excel using Microsoft.Jet.OLEDB.4.0 + Editing at the same time
I used the code described here to update an excel sheet using c#.
The problem is that the file gets locked and cannot be edited manually while it is being updated (unlike the example code, i am doing ...
3
votes
4answers
268 views
Changing an Excel cell's backcolor using hex results in Excel displaying completely different color in the spreadsheet
So I am setting an Excel cell's Interior Color to a certain value, like below:
worksheet.Cells[1, 1].Interior.Color = 0xF1DCDB;
However, when I then open up the spreadsheet in Excel, I see that the ...
3
votes
1answer
409 views
Find bitness (32-bit/64-bit) from Excel Application object?
Is it possible to determine whether Excel is running in 32-bit or 64-bit from the Microsoft.Office.Interop.Excel.ApplicationClass?
EditThe solution should work for both Excel 2010 and Excel 2007
3
votes
1answer
2k views
Excel interop works on machine with Office 2007 but fails on machine with Office 2010
I have a C# WPF (.NET 4.0) application that uses Excel interop to read data from an Excel file.
When I run this app on my development machine, which has Excel 2007, it works fine. When I run it on ...
3
votes
2answers
351 views
Excel Interop: Quitting the Excel application instance makes my tests fail?
I want to encapsulate the use of Excel Interop to make it easier to use somehow in a reuseable library.
So far, I have written some tests that work good altogether, except that between each test, I ...
3
votes
1answer
240 views
3
votes
6answers
499 views
Exporting the values in List to excel
Hi I am having a list container which contains the list of values. I wish to export the list values directly to Excel. Is there any way to do it directly?
3
votes
4answers
250 views
Why is .NET Sql Server access faster than Excel Interop?
This might be a loaded question, and it might get voted down, but it completely frustrates me.
When you use SQL Server in your development the data access is fast and efficient, but when you use COM ...
3
votes
6answers
5k views
C# and Excel Interop issue, Saving the excel file not smooth
I could Open and Write to the excel file, but when I try to save the file by passing a path to it, the save operation prompts with the Save dialog. I was expecting it to quitely Save the file at the ...
3
votes
5answers
3k views
Create UDF using VSTO and no VBA
Similar to this question (but in my case not VSTO SE), however, I just want to confirm that it is not possible to create a UDF using pure VSTO in Visual Studio 2005 and Excel 2003 - so, to absolutely ...
2
votes
2answers
47 views
Excel process remains open after interop; traditional method not working
I'm running into an issue with some code I'm debugging. Excel interop is used to extract some values from a workbook; however, Excel remains open after the program has exited. I've tried the ...
2
votes
1answer
116 views
Excel Interop: why does Range.Value = slow down application later on? (vs Range.Copy())?
Writing in C# and my version of Excel is 2007.
I am transferring some columns between worksheets in different workbooks open in the same excel application.
When I start out doing a:
...
2
votes
1answer
115 views
Excel References problem in C# code
I have a spreadsheet that is using the WORKDAY() function in Excel (which I believe lives in the Analysis Toolpak library/package/whatever you call it in Excel). When I open this spreadsheet manually ...
2
votes
2answers
228 views
(object[,])range.get_Value(XL.XlRangeValueDataType.xlRangeValueDefault) causes a conversion error
Error:
Cannot convert type 'string' to 'object[*,*]'
That's the error I have been getting. Can someone give me some pointers so that I can avoid it? Thanks.
Note:
Interestingly, ...
2
votes
2answers
1k views
Import Excel data into a DataSet using Microsoft.Office.Interop.Excel
What I want to do
I'm trying to use the Microsoft.Office.Interop.Excel namespace to open an Excel file (XSL or CSV, but sadly not XSLX) and import it into a DataSet. I don't have control over the ...
2
votes
1answer
256 views
Accessing an open Excel Workbook in C#
I need to access an excel file that is already open. I thought just inspecting the .Workbooks property that it would be there but it isn't. What is the right way to get a reference to the open ...
2
votes
3answers
3k views
Set cell value using Excel interop
Ok, so I'm trying to set the value of a cell with the excel interop library. I am able to do it with the following:
sheet.Cells[row, col] = value;
but it's terribly slow for how many I'm setting. ...
2
votes
4answers
2k views
Converting Timespan to DateTime in C#
I am reading Excel worksheet data using C# and Microsoft.Office.Interop. The sheet contains some date values. When I am trying to read that value it is just giving the number (probably TimeSpan). I am ...
2
votes
1answer
1k views
How to rename excel sheet name dynamically in C#
I have created an excel workbook with many sheets like sheet1,sheet2...etc.How can rename these Tab Names dynamically in C#?
Cheers
2
votes
4answers
3k views
System.Runtime.InteropServices.COMException (0x800A03EC)
Microsoft.Office.Interop.Excel.WorkbookClass.SaveAs() method is working fine on Windows server 2003 and also on XP but not on Windows server 2008. I copied it as it is gave all Dll's and permissions
...
2
votes
1answer
54 views
Prevent “Formulas have been recalculated, save” dialog?
How can I prevent the "Formulas have been recalculated, save" dialog that is launched by Excel interop when quitting the app?
xlApp.Quit();
...
2
votes
3answers
201 views
How to release excel process?
I'm using the Excel interop and it seems to be creating a process every time I call
new Microsoft.Office.Interop.Excel.Application()
And never ending the process even though I call
xlApp.Quit();
...
2
votes
3answers
571 views
Which Excel Interop objects to clean up myself and which to clean up by GC.Collect()
Question:
I want to ask a question in response to Mike Rosenblum's answer to this question. The question was about cleaning up Excel interop objects. Several solutions where suggested (e.g. wrappers, ...
2
votes
2answers
881 views
Use Excel Interop to grab image of Excel chart without writing to disk or using the clipboard
The interface to the chart object in Excel only allows access to the image representing the chart through two methods:
export, which saves the image to a file
CopyPicture, which saves the image to ...
1
vote
2answers
36 views
how to cast COM object type to Excel.Checkbox type
I am adding a checkbox to excel and i have issue casting a COM object of type 'System.__ComObject' to interface type 'Microsoft.Office.Interop.Excel.CheckBox', any help would be appreciated! I am ...
1
vote
1answer
63 views
Unable to create the excel file when the application (asp.net) is run from IIS
Unable to create the excel file at particular path when the application is run from IIS. But its created when the code is debuged using visual studio 2008.Even i have tried out using absolute path and ...
1
vote
0answers
81 views
Diagnose Excel interop failures
I'm currently trying to support an ASP.NET application that is failing while trying to use Excel interop to open an Excel file from a Sharepoint server and convert it to a PDF.
(I didn't write the ...
1
vote
1answer
59 views
Retrieve excel cell text that is not wide enough
I want to read excel display value, not value that excel internally saves. Problem is that when this value is wider that the cell it makes cell to display ####### which is OK in excel. But I want to ...
1
vote
1answer
93 views
Exporting ListView content to Excel?
I've been trying to export the content data of my ListView control into an Excel application using C#. I've already done this before using VB.NET and I tried to convert my code to C# but it failed but ...
1
vote
1answer
198 views
Excel worksheet in Windows form application without opening Excel application
I am converting several VBA projects to Windows form applications. The only problem I have is that some of the functionality of Excel is essential to the application, such as R1C1 formulas. I do not ...
1
vote
3answers
92 views
Saving excel in clients Machine using Interop
I'm using Interop Excel to automate excel in my C# code, but at the time of saving it I want that it should give user a popup(just like we get when we download a file from internet with option of open ...
1
vote
1answer
86 views
Running test in Visual Studio gives Excel errors
I am using C# with Selenium for my tests, and Excel Interop for reporting test results.
When I run my test in Visual Studio, it shows the following error:
Clicking on Debug, opens the Visual ...
1
vote
1answer
99 views
Exception accessing FormatCondition using VS2010 and Excel 2010
I get the following exception when I try to access a FormatCondition item from a FormatConditions collection.
Unable to cast COM object of type 'System.__ComObject' to interface type ...
1
vote
2answers
113 views
Sorting excel sheet in reverse order on basis of created time / reversing the excel sheet
I'm using Microsoft interop excel to automate the excel workboook
in which i have many worksheets(say 40) which have been created at in seconds gap or even less
now i have to present the worksheet in ...
1
vote
2answers
131 views
Excel formula lost after reassigning the cell value
Here is the sample code
XL.Worksheet worksheet = Globals.ThisAddIn.Application.ActiveSheet;
XL.Range range = worksheet.UsedRange;
arrValue = ...
1
vote
1answer
101 views
vb.net Object(,) Array index won't find (0,0) even though it's an 11x37 array
first time questioner here. Thanks in advance for any help you can give.
I'm trying to read a bunch of data from a spreadsheet, chop it up, then throw it into a database. I would rather not do things ...
1
vote
2answers
75 views
Preventing users from using an instance of Excel
I'm using Microsoft.Office.Interop.Excel to create Excel reports with C#. Those reports have a large amount of graphics and take long time to prepare. During the preparation, The instance of the Excel ...
1
vote
1answer
375 views
{“Exception from HRESULT: 0x800A03EC”} at Microsoft.Office.Interop
I am trying to create an excel file using the below code in an ASP.Net web applcation.
The code works normally when I run from visual studio, but an exception occur workbook.Close command when I ...
1
vote
3answers
328 views
converting object to two dimensional array in C#
This one should be simple, but I don't really know how to find a way to do it...
I am using .NET 4.0. I have an object[12] filled with decimal numbers, and want to use it to fill an Excel range of ...
1
vote
1answer
303 views
How to access an already opened Excel file in C#?
I have an excel workbook opened via double-clicking it in windows explorer but cannot access it in code
Excel.Application xlApp = (Application)Marshal.GetActiveObject("Excel.Application");
...
1
vote
2answers
315 views
Interop Excel - Range Text to multidimensional array
I am reading excel sheet with following code:
Excel.Range uRange = xlWorkSheet.UsedRange;
dynamic data = uRange.Value2;
As you can see I copy used range cell values into dynamic 2D array. One ...
1
vote
2answers
376 views
Programmatically export Excel files to XML using xmlMaps
With the Excel addin OfficeExcel2003XMLToolsAddin I've been able to define XML mapping for an Excel Worksheet (this addin converts a range to a XML list) and now I'm able to manually save the Excel ...
1
vote
2answers
126 views
Excel Interop: reference by number, not by string
Good morning.
After having read the answer on a question about optimizing Excel Interop, I found that referencing a cell using worksheet.Range["A1:C3"] (same as worksheet.get_range("A1:C3")) isn't ...
1
vote
4answers
300 views
export to exel C#
Please help - I'am trying to wrtite data to exel from c# , but while debugging Ihave exeption:
Unable to cast COM object of type 'System.__ComObject' to interface type
...
1
vote
0answers
96 views
DragDrop on new Excel Sheet gives “Object reference not set to value”
I am using devExpress. Office 2007. c#. When I drag and drop my results in 1/2/3 excel sheet works fine, but dropping results on new sheet gives Object reference not set to an instance of a value. ...
1
vote
1answer
180 views
Produce Excel document from SQL data table in vb.net
In my project I have a summary data table which i want to export in Excel document, for this purpose i have deployed the following code:
Public Shared Function Main() As Integer
Dim exc As ...