Share via


Application.Cells Property

Excel Developer Reference

Returns a Range object that represents all the cells on the active worksheet. If the active document isn’t a worksheet, this property fails.

Syntax

expression.Cells

expression   A variable that represents an Application object.

Remarks

Because the Item property is the default property for the Range object, you can specify the row and column index immediately after the Cells keyword. For more information, see the Item property and the examples for this topic.

Using this property without an object qualifier returns a Range object that represents all the cells on the active worksheet.

See Also