Set fnd = Range("8:8").Find("WBS", , , xlWhole, , , False, , False)
If Not fnd Is Nothing Then
Intersect(Range("8:5000"), fnd.EntireColumn).Copy
Range("B8").PasteSpecial xlPasteValues
Intersect(Range("8:5000"), fnd.EntireColumn).ClearContents
End If
Hello
The code above is working...