Click here to Skip to main content
Click here to Skip to main content

Opening and Navigating Excel with C#

By , 17 Apr 2012
 

Introduction 

Note: This article has been updated to interact with Office 2007. I left the old .NET 1.0 solution for Office XP available for download for reference (in case you are using an old version of Office).

This is a short introduction to opening an existing Microsoft Excel spreadsheet using Visual C# .NET. The computer must have Excel installed on the system for this code to run properly. The Excel assembly is used to open and manipulate Excel spreadsheets.

Code Explanation

First, the Excel assembly must be added to the project. To do this you must add a reference to the Microsoft.Office.Interop.Excel library by going to the Project -> Add Reference  menu item. Go to the .NET tab of the dialog box that pops up and scroll down the Microsoft.Office.Interop.Excel list item. Double click on it and press OK. This adds the reference to your project. In the "using" section of your code, type

using Excel = Microsoft.Office.Interop.Excel; 

Once the assembly is added to the project, a new application needs to be created:

Excel.Application excelApp = new Excel.Application();

If you want to make Excel visible to the user you have to set the Visible property to true, the default is false.  

excelApp.Visible = true;

The code above opens the Excel application, in order to use the application, you have to open a workbook by creating a Workbook object. You can open a new blank workbook by using the following code:

Excel.Workbook newWorkbook = excelApp.Workbooks.Add();

The preceding code opens a blank workbook with one sheet. The .Add method optionally takes a template object.  If the parameter is left blank, the default template will be used (like when you open Excel manually).

If you want to open an existing document for editing instead of creating a new one, you can use the following code to open the Workbook object: 

string workbookPath = "c:/SomeWorkBook.xls";
Excel.Workbook excelWorkbook = excelApp.Workbooks.Open(workbookPath,
        0, false, 5, "", "", false, Excel.XlPlatform.xlWindows, "",
        true, false, 0, true, false, false);

The preceding code may need a little explanation. The workbookPath is of course the path to the existing spreadsheet that you want to open, and if using .NET 4.0 and the Office 2007 library (Microsoft.Office.Interop.Excel library), it is the only parameter required. The rest of the excelApp.Workbooks.open parameters are a little less obvious. The following is the list of parameters that are passed to the function:

  • WorkBooks.open(string Filename, object UpdateLinks, object ReadOnly, object Format, object Password, object WriteResPassword, object ReadOnlyRecommend, object Origin, object Delimiter, object Editable, object Notify, object Converter, object AddToMru, object Local, object CorruptLoad )

To view the documentation on this function, follow the link to Microsoft’s website for further explanation of the function at: http://msdn.microsoft.com/en-us/library/bb179167%28v=office.12%29.aspx

Once the workbook is either created or opened, you must create a Sheets object that holds the Worksheets within the workbook. The following code will get all of the sheets in the workbook you previously opened.

Excel.Sheets excelSheets = excelWorkbook.Worksheets;

Now that you have the collection of Worksheets, you must get an individual sheet edit data within.

string currentSheet = "Sheet1";
Excel.Worksheet excelWorksheet = (Excel.Worksheet)excelSheets.get_Item(currentSheet);

In the preceding code, you have to type cast the excelSheets.get_Item(string) method because it returns an object. Now that you have the sheet you are ready to access individual cells with the following code:

Excel.Range excelCell = 
        (Excel.Range)excelWorksheet.get_Range("A1", "A1");

The get_Range function must take two parameters. If the two parameters are equal, a single cell is selected; otherwise a range of cells will be selected. Again you have to type cast the return value of the method. Once you have a cell object, your can set its value using the .Value2 property, or use any of the other properties to manipulate ranges of cells.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Narsters
Software Developer (Senior)
United States United States
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 4memberjonthan3417 May '13 - 11:39 
Questionyou awsomememberDark_traveller9 May '13 - 0:32 
QuestionVisible, not Visablememberwizardzz17 Apr '12 - 8:11 
AnswerRe: Visible, not VisablememberNarsters17 Apr '12 - 9:46 
GeneralMy vote of 4memberArjunPr21 Sep '11 - 18:04 
GeneralMy vote of 3memberMember 810932425 Jul '11 - 1:37 
the author didn't mention about how to manipulate cells!
GeneralMy vote of 4memberfyarbasi4 Oct '10 - 1:07 
QuestionHow to Make Bold in Part of an Excel Cell - Need Eargent help!!!!!!!membersupuna2u12 Sep '10 - 17:16 
QuestionOpening an excel workbook from Document LibrarymembersuruKarthik30 Mar '10 - 23:16 
QuestionHow to make it work with Excel 2007memberth3_m0t410 Feb '10 - 13:48 
AnswerRe: How to make it work with Excel 2007memberNarsters10 Feb '10 - 18:08 
GeneralReading Excel Embeded objectsmemberShrihari Devji7 Jan '10 - 20:15 
GeneralThank you very muchmemberBidesh Mukherjee25 Nov '09 - 0:44 
QuestionWhat exactly are the downloaded source files supposed to do?memberstapes2 Mar '09 - 5:35 
AnswerRe: What exactly are the downloaded source files supposed to do?memberNarsters2 Mar '09 - 6:40 
GeneralThe server threw an exception.(Exception from HRESULT: 0x80010105(RPC_E_SERVERFAULT))memberMember 13942176 Nov '08 - 6:14 
GeneralThanks a bunch!!!!memberArcherthegreat28 Oct '08 - 17:12 
GeneralPopulating an Excel "template" in ASP.NETmemberslapmatt10 Sep '08 - 23:03 
GeneralRe: Populating an Excel "template" in ASP.NETmemberJeff Ruys12 Sep '08 - 9:59 
GeneralRe: Populating an Excel "template" in ASP.NETmemberCikaPero12 Apr '11 - 22:37 
QuestionCom Exception 0x80028018 TYPE_E_INVDATAREADmembertho_wa9 Sep '08 - 1:25 
AnswerRe: Com Exception 0x80028018 TYPE_E_INVDATAREADmemberJeff Ruys12 Sep '08 - 10:21 
AnswerRe: Com Exception 0x80028018 TYPE_E_INVDATAREADmemberofercinn17 Sep '08 - 2:21 
GeneralRe: Com Exception 0x80028018 TYPE_E_INVDATAREADmemberMember 119956312 Jul '10 - 13:04 
GeneralRe: Com Exception 0x80028018 TYPE_E_INVDATAREADmembernafzali15 Sep '11 - 6:05 
QuestionHow to move to last row of Active WorkSheet programmatically using C#?memberDinesh Patel18 Aug '08 - 19:56 
AnswerRe: How to move to last row of Active WorkSheet programmatically using C#?memberJeff Ruys21 Aug '08 - 8:26 
QuestionHow to insert a row from one excel to another using c#.net 2005?memberVDivyaReddy13 Aug '08 - 23:15 
AnswerRe: How to insert a row from one excel to another using c#.net 2005?memberrajkumarsingh3 Oct '08 - 0:18 
QuestionHelp! C# Excel 'get_range' returning value for cell in the next rowmemberMember 271871110 Jul '08 - 9:44 
AnswerRe: Help! C# Excel 'get_range' returning value for cell in the next rowmemberJeff Ruys10 Jul '08 - 17:08 
Generalto close the workbookmemberMember 15181678 May '08 - 10:00 
GeneralI DID IT !!!!!!!!!!!!!!!!!!!!!!!!memberMember 151816710 May '08 - 9:52 
QuestionHi. How to copy a range of column/cells from one excel document to another ?memberMember 15181677 May '08 - 11:48 
AnswerRe: Hi. How to copy a range of column/cells from one excel document to another ?memberJeff Ruys7 May '08 - 16:21 
GeneralRe: Hi. How to copy a range of column/cells from one excel document to another ?memberMember 15181678 May '08 - 4:39 
GeneralRe: Hi. How to copy a range of column/cells from one excel document to another ?memberJeff Ruys8 May '08 - 6:13 
GeneralRe: Hi. How to copy a range of column/cells from one excel document to another ?memberMember 15181678 May '08 - 8:23 
QuestionCom exceptionmembermanu4ever22 Apr '08 - 10:22 
GeneralRe: Com exceptionmemberJeff Ruys22 Apr '08 - 10:54 
GeneralRe: Com exceptionmembermanu4ever22 Apr '08 - 11:05 
GeneralRe: Com exceptionmembermanu4ever22 Apr '08 - 11:16 
GeneralRe: Com exceptionmemberJeff Ruys22 Apr '08 - 13:22 
GeneralRe: Com exceptionmembermanu4ever22 Apr '08 - 18:17 
GeneralRe: Com exceptionmemberJeff Ruys22 Apr '08 - 18:46 
Generalread an Excel range (cell) of date type into C# stringmemberMember 271871120 Mar '08 - 11:00 
AnswerRe: read an Excel range (cell) of date type into C# stringmemberJeff Ruys20 Mar '08 - 14:40 
GeneralRe: read an Excel range (cell) of date type into C# stringmemberMember 271871121 Mar '08 - 4:15 
AnswerRe: read an Excel range (cell) of date type into C# stringmemberfRenato17 Jun '08 - 2:50 
Questionhow to append data into already existing Excel sheetmembershraddha19046 Mar '08 - 21:57 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130516.1 | Last Updated 17 Apr 2012
Article Copyright 2003 by Narsters
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid