Struggling to Set the Range in Column A.
The number of rows for the data is always changing so I've named the upper and lower rows of the data set.
If the cell contains text and not a number, I want to change the font to white.
Sub DetailHide()
Dim RangeToConsider As Range
Dim shtSrc As Worksheet
Set shtSrc = Sheets("Est Dtl")
Set RangeToConsider = shtSrc.Range(.Cells(.Range("EstimateDetailHeader").Row + 1, "A"), _
.Cells(.Range("BorderLastRow").Row - 4, "A"))
For Each Cell In RangeToConsider
If IsNumeric(Cell) = False Then
Cell.Select
Selection.Font.Color = white
End If
Next Cell
End Sub
A compile error
Invalid or unqualified reference
occurs at setting the RangeToConsider .Cells(.Range
point.