Chapter 8
Working with Range Objects
IN THIS CHAPTER
Finding out why Range objects are so important
Understanding the various ways of referring to ranges
Discovering some of the most useful Range object properties
Uncovering some of the most useful Range object methods
This chapter digs a bit deeper into Excel’s dungeons and takes a closer look at Range objects. Excel is all about cells, and the Range object is a container for cells. Much of the programming work you do in Excel focuses on Range objects, such as assigning values to cells, putting formulas in cells, and formatting cells.
Referring to Range Objects
A Range object represents a range contained in a Worksheet object. Range objects, like all other objects, have properties (which you can examine and sometimes change) and methods (which perform actions on the object).
A Range object can be as small as a single cell (for example, B4) or as large as every one of the 17,179,869,184 cells in a worksheet (A1:XFD1048576).
When you refer to a Range object, the address is always surrounded by double quotes, like this:
Range("A1:C5") ...