Excel 2010, I have this VBA routine that sets row heights on the basis of some parameters that begins like this;
Sub setHeights()
Dim targetRange As Range
Dim targetCell As Range
Set targetRange = Range("T18:T53")
For Each targetCell In targetRange.Cells
If Not...