How aboutCode:Range("Table1[PO'#]").SpecialCells(xlConstants, xlTextValues).Select
InStr(1, Range[COLOR=#333333]("Table1[PO'#]")[/COLOR], "[A-Z]", vbBinaryCompare)
Dim rng As Range
Dim Cl As Range
For Each Cl In Range("Table1[PO'#]")
If Not IsNumeric(Left(Cl, 1)) Then
If rng Is Nothing Then Set rng = Cl Else Set rng = Union(rng, Cl)
End If
Next Cl
rng.Select
Dim rng As Range
Dim Cl As Range
For Each Cl In Range("Table1[PO'#]") 'Loops through the PO column
If Not IsNumeric(Left(Cl, 1)) Then 'Checks if the first character is a number
If rng Is Nothing Then Set rng = Cl Else Set rng = Union(rng, Cl) 'Creates a range of all cells that do not start with a number
End If
Next Cl
rng.Select 'selects the range
Added commentsCode:Dim rng As Range Dim Cl As Range For Each Cl In Range("Table1[PO'#]") 'Loops through the PO column If Not IsNumeric(Left(Cl, 1)) Then 'Checks if the first character is a number If rng Is Nothing Then Set rng = Cl Else Set rng = Union(rng, Cl) 'Creates a range of all cells that do not start with a number End If Next Cl rng.Select 'selects the range