may be something like this...
Dim Cell As Range
Dim ValUnique1 As New Collection
Dim rStr As String
Dim i As Long
Dim newStr As String
Dim rmStr As String
rmStr = "Fld Coordinator"
On Error Resume Next
For Each Cell In Sheets(1).Range("A3:A3000")
If Not IsNumeric(Cell) Then
If Not Cell.Value Like "*Construction*" And Not Cell.Value Like "*BI*" Then
If Not Cell.Offset(1, 0).Value Like "*Construction*" And Not Cell.Offset(1, 0).Value Like "*BI*" Then
'ValUnique1.Add Cell.Value, CStr(Cell.Value)
newStr = Trim(Right(Cell.Value, Len(Cell.Value) - IIf(InStr(1, Cell.Value, rmStr) >= 1, Len(rmStr), 0)))
ValUnique1.Add newStr, newStr
End If
End If
End If
Next Cell
Bookmarks