0
votes
1answer
25 views

Share Workbook getting checked on exporting excel from asp.net c#

How to uncheck "Allow changes by more than one user at the same time." in Share Workbook in excel while exporting the excel from c# I am using "Microsoft.Office.Interop.Excel" for exporting the excel ...
0
votes
2answers
59 views

Fastest way to enumerate or look for all empty Excel cells and change their style or do some other processing

Which would be potentially a best way to enumerate or iterate or simply look for empty cells or cells with specific data structure in Excel, and later once you find it do some processing on it. I ...
0
votes
1answer
64 views

Return type of Application.Evaluate in exotic cases

I am trying to write a method in C# that will, given the name of a named range in an Excel workbook, retrieve the values in that range. I'd like it to work even if the named range isn't a pure ...
0
votes
1answer
31 views

Writing to Excel cells while releasing all COM objects

I am following this posts advice and trying to release all of my COM objects, including all Ranges while writing a List of string tuples to an Excel spreadsheet (using his ComObjectManager class). I ...
0
votes
0answers
65 views

C# Cant read VBA Macros from Excel. (Line count 0)

I am trying to get the VBA Macros from an Excel File. The file does not have password, and the vb project does not seem to be password protected because I am opening it without setting the current ...
5
votes
3answers
177 views

Color non-consecutive cells in an Excel sheet

UPDATE 2: I still want to be able to make a range object with non-consecutive ranges and even though my colleagues have given up on it I personaly hate not finishing projects. If anyone can tell me ...
0
votes
2answers
87 views

excel interops OK with Excel 2003 with 'Office 2007 Compatability Pack'?

I'm maintaining a web-app which currently references Interop.Excel.dll (v 1.5.0.0). The Interop.Excel.dll been used to access .xls files under Excel 2003 and then, subsequently, .xlsx/m files under ...
0
votes
1answer
65 views

Microsoft.Office.Interop.Excel.WorksheetFunction does not contain all the functions in excel

I am trying to call excel functions from C#. I can use the following code to get the excel functions: Application app = new Application(); WorksheetFunction functions = app.WorksheetFunction; var sum ...
1
vote
3answers
130 views

Fast access to excel data in X++

Can someone give me a clue how can I get the fast access of the excel data. Currently the excel contains more than 200K records and when I retrieve from the X++ code it takes a lot of time to retrieve ...
0
votes
0answers
57 views

Excel - Open worksheet using existing workbook is opening new workbook

I am trying to open an worksheet in an existing workbook, but this opens it in a new workbook. This problem is only with Office 2013 not 2007/2010. Here is the C# code i am using to try achieve this. ...
0
votes
1answer
70 views

Replace use of excel interop

I have a system which does heavy use of excel interop. this is problematic , because it is deployed at many client sites, each with his own unique operating system, office version , regional settings ...
1
vote
1answer
119 views

How to copy chart from an excel file to power point?

I have a C# code building an excel file containing few charts. I'm working with Excel through Microsoft.Office.Interop.Excel 12. That's working fine but at the same time I need to generate a ...
0
votes
1answer
84 views

Excel Interop's set_value method damages values

I found a problem while using the set_value method. I wrote the simplest possible code to exclude my mistakes. When I read some cells and then write them back to sheet using set_value while: any ...
0
votes
1answer
239 views

How can I use C# Excel “Microsoft.Office.Interop.Excel”, to count the amount of not empty cells in a one columns

So I have this spreadsheet, it has Fname, Lname, Pnumber, Email, Cid. Cid is the only really important one, the rest are optional technically. So instead of just doing a loop to see when the cell ...
0
votes
1answer
184 views

C# - Excel 2013 how to change chart style

I'm trying to chnage style for a chart in excel 2013 but it only changes color: Range chartRange; ChartObjects wsCharts = (ChartObjects)workSheet.ChartObjects(Type.Missing); ChartObject myChart = ...
0
votes
0answers
85 views

Excel Add-in: GC.WaitForPendingFinalizers() hangs

The excel add-in project I'm working with spawns an excel process to generate charts based on a template. I then copy these charts into a word document, also based on a template. If I do this using: ...
1
vote
1answer
171 views

Delete top 3 rows from xls using excel.interop.object library

I am using excel.interop.object library 9.0 to manipulate my xls file in c# If suppose i have a xls that have 5 sheets. All sheets having some rows. I am using following code to delete top 2 rows ...
0
votes
2answers
85 views

when you change Format of the cells using “Format Cells” option then No excel event gets fired

Can someone tell me that If I have already selected one cell in Excel Right click on it Go to format cells options Change the formatting Then which event will be fired? Please note that I do not ...
0
votes
3answers
157 views

Interop Excel not closing process

I have been struggling with this problem for a couple of days, I have made reasearch and applied all the suggestions I found on various forums but I'm still unable to solve it. My problem is with ...
0
votes
1answer
238 views

Excel Interop failed to write (HRESULT: 0x800A03EC)

I got an exception 0x800A03EC when I was trying to execute this command in Excel Interop ws.get_Range("A2").Value= "=?9ABC" It seems that interop doesn't like string that starts with "=?". I tried ...
0
votes
0answers
102 views

Edit a line with marker chart programmatically using c#

How do i edit the line with marker chart in a powerpoint slide programmatically using c#? Manually you can achieve this by doing right click on the chart and choosing edit data option,where an excel ...
1
vote
1answer
226 views

Sorting Excel rows alphabetically in F# (Office.Interop)

I am using the Excel interop in Visual Studio 2010 to try to sort all of these rows of data alphabetically. Some are already in alphabetical order. Accountancy Graduate, Trainees Banking, Insurance, ...
-3
votes
1answer
79 views

Office-Interop, how call function in Microsoft.Interop.Excel [closed]

I need to call from a c# application a function in the library Microsoft.Interop.Excel but I don'k know how to do it. This is the function: ...
1
vote
1answer
382 views

C# Export Excel Chart as object (not as picture) to Word

I want to export an excel chart to Word as an object (Excel Chart), not as a picture. As picture is very easy with Chart.CopyPicture I´m using AddOleObject, but it gives an error about not being able ...
0
votes
1answer
90 views

Linking 2 cells in Excel using c#

I need to link 2 cells from 2 different excel workbooks. How can I do that? Example: Say if A1 cell of Book1 and B2 of Book2 are linked. If I update A1 cell of Book1 with 1000, then B2 of Book2 ...
1
vote
1answer
760 views

How to import Microsoft.Office.Interop.Excel on a console application?

It works fine on my Website Application, but I have to use it too on console application that will run from the task scheduler. This is how I'm calling the import: Imports Excel = ...
0
votes
1answer
164 views

Create chart in excel second sheet

I am writing a C# Interop code to create report in excel with chart in 2nd sheet. I am able create chart, but it is coming in first sheet. Please help get the same in second sheet. My code is here. ...
0
votes
1answer
78 views

Accessing CustomProperties on Worksheet with Name

I'm trying to access a custom property on a worksheet by using the name of the property, but it seems this is not supported (at least not in C#, I saw others reporting that it works in VB and ...
0
votes
0answers
13 views

Office PIA's version compatibility [duplicate]

Possible Duplicate: Microsoft Office Interop in a mixed Office 2003 / 2007 / 2010 environment I reference Microsoft.Office.Interop.Excel (v.14) in my application to automate some excel file ...
-1
votes
1answer
95 views

excel UsedRange is not shown properly when columns are hidden

When I hide a columns ( lets say N ) and then if I find the used range using activesheet.usedrange function then it does not give me correct used range. However when I hide one row and use the above ...
2
votes
1answer
135 views

Does the inability of IMessageFilter to handle 0x800AC472 (VBA_E_IGNORE) make implementing IMessageFilter irrelevant?

From msdn it seems that IMessageFilter doesn't handle all exceptions, for example, at some points, office applications 'suspend' their object model, at which point it cannot be invoked and throws: ...
0
votes
1answer
111 views

Will excel file generation process run on webserver risk file locks?

I am wondering if I need to do something(threading etc.) to preclude my file generation failing due to more than one user attempting to run the generation process simultaneously. If there is a ...
1
vote
1answer
316 views

Slow Excel automation?

I'm using the following Powershell script to remove the NumberFormat of the cells in a column for a lot of files so all the fractions will be displayed. The column may have decimal, text or date, etc; ...
1
vote
1answer
126 views

Reconnect to a disconnected Excel COM Interop instance

I have a 3rd party app that is exporting data to Excel using the Excel COM Interop. There is a bug in their program causing it to fail before it makes the Excel instance visible. However from where ...
0
votes
0answers
122 views

COMException (0x800A01A8) when calling Office.Core.CommandBarButton.Caption - Excel 2010

I have a custom right click menu in excel onto which I put some buttons. It seems as though the first time I click one of the buttons, it functions as expected but the second time I click the button ...
0
votes
0answers
115 views

Why Does the Excel.Application App.GetType().Name return ComObject?

Using VisualStudio 2008, I created a simple Excel 2007 Add-In project. I add code like the following... var app = Application; var members = app.GetType().GetMembers(BindingFlags.Public| ...
0
votes
5answers
538 views

Simplest way to read from Excel and Word Files in .NET

This is for self education really. But, is there an easier way to read from an excel sheet, without using the COM/INTEROP DLLs? Any other way Microsoft makes it easier to read values from an excel ...
1
vote
0answers
137 views

Excel InterOp: Updating pivot table datasource breaks calculated fields

I have Sheet1 which contains all the data and a pivot table in Sheet2 which references this data as the data source. When the data needs refreshing I wipe the data except for the header row and then ...
1
vote
2answers
524 views

find all open Excel workbooks

I'm trying to get a list of all currently open Excel workbooks, so that the user can select which one of them to get some data from. I tried this: List<string> excelList = new ...
1
vote
2answers
624 views

C# and Excel best practices [closed]

I am doing a lot of MS Excel interop i C# (Visual Studio 2012) using Microsoft.Office.Interop.Excel. It requires a lot of tiresome manual code to include Excel formulas, doing formatting of text and ...
1
vote
1answer
261 views

Excel Interop get width in pixels of text inside cell

I have a wide merged cell showing the title of the sheet. I also have a colored Textbox that I would like to position immediately to the right of the text in the merged cell. The width of the title ...
2
votes
1answer
145 views

Read 1GB size excel with 1.5 Records per sheet to Dataset

I am trying to import large excel files to database using .NET application in which I will do some customized cleansing and processing of data. The excel file will have sheets with 255 columns and ...
1
vote
1answer
165 views

Determine Office version in VSTO 4 before this.Application is set

I would like to determine the version of Office/Excel in a VSTO Addin when CreateRibbonExtensibilityObject() is called on the Addin. I have encountered an issue with this, and have encountered: the ...
1
vote
1answer
165 views

Is there Any way to change the colour of an Excel Cell using C#?

I am working on an ASP project where I need to Change the color of the cells based on some validation Checks and return it to user. Currently I have successfully Implemented this functionality using ...
1
vote
2answers
374 views

Microsoft Excel Interop Check whether excel sheet support Autofit

While working with Excel Interop, i come up with an issue. Before Saving I Autofit columns of worksheet with the following code. Excel.Worksheet curSheet = (Excel.Worksheet)wsEnumerator.Current; ...
1
vote
1answer
219 views

How to delete hidden Column/Row from Excel Sheet?

I am trying to delete all the hidden columns from Excel sheet and i am using Microsoft Office Interop. Problem is when i iterate through columns i didn't find the column hidden property set. I don't ...
0
votes
1answer
240 views

How to copy non-empty cells from Excel worksheet?

I'm writing a C# app that pastes an Excel worksheet into a Word document. using Excel = Microsoft.Office.Interop.Excel; using Word = Microsoft.Office.Interop.Word; Excel.Worksheet ws = ...
0
votes
3answers
312 views

Dynamically Change Button Image in Excel 2010

I'm using XML to create a custom Excel Ribbon in which I have a button that contains an image. I would like to be able to change this image when the button is pressed (like a toggle) to show what ...
2
votes
1answer
153 views

F# Excel UsedRange has no Properties or Methods

This is a continuation of the discussion begun on F# Excel UsedRange is not Defined, which has been solved by down-casting the ActiveSheet object to a Worksheet. Upon doing that, however, I was ...
2
votes
0answers
232 views

Merging different worksheets of workbook

The whole app works fine, when merging single tabbed workbooks. But then I added functionality to also merge all worksheets in a book, before merging the book with another. It merges them (tested on ...

1 2 3 4