Next Property [Excel 2003 VBA Language Reference]

Returns a Range object that represents the next cell when called from the Range object or a Worksheet object that represents the next sheet when called from a Chart or Worksheet object.

Remarks

If the object is a range, this property emulates the TAB key, although the property returns the next cell without selecting it.

On a protected sheet, this property returns the next unlocked cell. On an unprotected sheet, this property always returns the cell immediately to the right of the specified cell.

Example

This example selects the next unlocked cell on Sheet1. If Sheet1 is unprotected, this is the cell immediately to the right of the active cell.

Worksheets("Sheet1").Activate
ActiveCell.Next.Select

Applies to | Chart Object | Range Collection | Worksheet Object

See Also | ActivateNext Method | Previous Property