Click here to Skip to main content
15,895,011 members
Articles / Productivity Apps and Services / Microsoft Office / Microsoft Excel

A Handy-Dandy Little Class for Accessing Excel Worksheet Cells

Rate me:
Please Sign up or sign in to vote.
3.71/5 (10 votes)
1 Dec 2010CPOL1 min read 33.2K   351   33   8
A class that accepts a reference to an Excel.Worksheet and lets you use an overloaded subscript operator to cleanly and intuitively read/write the Value2 of Excel cells, and get the Excel.Range corresponding to a given cell.

Introduction

Sometimes, when you're using the Excel.Interop classes, you want to open a worksheet from code and tweak the values of various cells. It's hard to remember the syntax.

C#
oSheet = (Excel.Worksheet)oBook.Worksheets[1];
((Excel.Range)oSheet.Cells[1, 1]).Value2 = "blah";

I don't know about you, but I might like to encapsulate the Excel.Worksheet object I am using in a nice class with perhaps an operator [] overload, so I don't have to remember crazy syntax all the day long or be looking up code snippets and copying and pasting. I'm thinking that code of the form:

C#
cellObj[1, 1]="blah";
int myCellValue = Convert.ToInt32(cellObj[1,2]);

is perhaps a bit more readable. So let's see if we can't make a class to help us with this.

ExcelCell Class

First, let's dive right into the meat. Here's the definition of our class, ExcelCell, which encapsulates the Excel.Worksheet object from Excel and allows access to individual cells.

C#
using Office = Microsoft.Office.Core;
using Excel = Microsoft.Office.Interop.Excel;
 
public class ExcelCell : Object
{
    private Excel.Worksheet oSheet;
 
    public ExcelCell(Excel.Worksheet oSheet)
    {
        this.oSheet = oSheet;
    }
 
    public object this[int row, int column]
    {
        get
        {
            if (oSheet == null)
                throw new InvalidOperationException(
                "Excel.Worksheet reference is null.");
            return ((Excel.Range)oSheet.Cells[row, column]).Value2;
        }
        set
        {
            if (oSheet == null)
            throw new InvalidOperationException(
                "Excel.Worksheet reference is null.");
            ((Excel.Range)oSheet.Cells[row, column]).Value2 = value;
        }
    }
 
    public Excel.Range GetRange(int row, int column)
    {
        if (oSheet == null)
            throw new InvalidOperationException(
        "Excel.Worksheet reference is null.");
        return ((Excel.Range)oSheet.Cells[row, column]);
    }
}

Note: You should make sure that you have the Microsoft.Office.Core and Microsoft.Office.Interop.Excel modules loaded as references in your project. They can be version 12 and up.

Using the Class

To use the class, say you have an instance of Excel.Application open and an instance of Excel.Workbook open as well (in .xls or .xlsx etc. format), and your instances are named oExcel and oBook, respectively. Let's see this class in action:

C#
ExcelCell cell = new ExcelCell((Excel.Worksheet)oBook.Worksheets[1]);
 
cell[4, 2] = "happy";
cell[4, 4] = "day"; // sets Value2

int cellValue = Convert.ToInt32(cell[4,5]);
// reading a cell -- very straightforward.

And that's all she wrote!

Points of Interest

This class is interesting in that it reveals how to overload the [,] operator. A quick Google search can also find you the information, but watch how simplified your Excel programming gets after putting this class in your program.

History

  • 23 Nov. 2010: Article submitted.

License

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


Written By
Team Leader
United States United States
Dr. Brian Hart obtained his Ph.D. in Astrophysics from the University of California, Irvine in 2008. Under Professor David Buote, Dr. Heart researched the structure and evolution of the universe. Dr. Hart is currently employed as a Astrodynamicist / Space Data Scientist with Point Solutions Group in Colorado Springs, CO supporting Space Operations Command, United States Space Force. Dr. Hart is a Veteran of the U.S. Army and the U.S. Navy, having most recently served at Fort George G. Meade, MD as a Naval Officer with a Cyber Warfare Engineer designator. Dr. Hart has previously held positions at Jacobs Engineering supporting Cheyenne Mountain/Space Force supporting tests, with USSPACECOM/J58 supporting operators using predictive AI/ML with Rhombus Power, and with SAIC supporting the Horizon 2 program at STARCOM. Dr. Hart is well known to the community due to his over 150 technical publications and public speaking events. Originally from Minneapolis/Saint Paul, Minnesota, Dr. Hart lives in Colorado Springs with his Black Lab, Bruce, and likes bowling, winter sports, exploring, and swimming. Dr. Hart has a new movie coming out soon, which is a documentary called "Galaxy Clusters: Giants of the Universe," about his outer space research. The movie showcases the Chandra X-ray Observatory, one of NASA’s four great observatories and the world’s most powerful telescopes for detecting X-rays. The movie has been accepted for screening at the USAFA Planetarium and will highlight the need of updating and maintaining X-ray telescopes for scientific advancement.

Comments and Discussions

 
GeneralMy vote of 1 Pin
Clifford Nelson30-Jul-12 10:03
Clifford Nelson30-Jul-12 10:03 
Not an article, a tip
GeneralAlternative Excel component Pin
CikaPero28-Mar-11 0:38
CikaPero28-Mar-11 0:38 
GeneralThanks - This cleaned up my code considerably. Pin
rajaquila22-Dec-10 4:17
rajaquila22-Dec-10 4:17 
GeneralMy vote of 5 Pin
thatraja30-Nov-10 2:45
professionalthatraja30-Nov-10 2:45 
GeneralRe: My vote of 5 Pin
Brian C Hart1-Dec-10 10:04
professionalBrian C Hart1-Dec-10 10:04 
GeneralVery cool, but even better if you... Pin
DaveX8629-Nov-10 15:54
DaveX8629-Nov-10 15:54 
GeneralMore, more Pin
John Whitmire29-Nov-10 5:05
professionalJohn Whitmire29-Nov-10 5:05 
GeneralRe: More, more Pin
Brian C Hart29-Nov-10 5:16
professionalBrian C Hart29-Nov-10 5:16 

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.