Syntax

expression.Row

expression A variable that represents a Range object.

Example

This example sets the row height of every other row on Sheet1 to 4 points.

Visual Basic for Applications
For Each rw In Worksheets("Sheet1").Rows If rw.Row Mod 2 = 0 Then rw.RowHeight = 4 End If Next rw
Determine what row a cell is in? return initial range row ROW row property What is the row number of the active cell? What is the top row in a range?

See also: