Sub rowHeight() Dim i As Integer Application.ScreenUpdating = False For i = 1 To 100 Step 2 Range("A" & i).rowHeight = 15 Next i Application.ScreenUpdating = True End Sub