Hello all i have a question about the Setting of a range and then looking at that. I have the following code and it seems there should be a more elquent way to write it.
i want to do the 'ELSE' statement if the string in CurrentColumn(7) is found anywhere in row 1.
I tried:
if Not Columnfind then, but this gives me an error.
Code
Set ColumnFind = ActiveSheet.Rows("1:1").Find(CurrentColumn(7), LookIn:=xlValues)
If ColumnFind Is Nothing Then
Else
ColumnFind.EntireColumn.Copy
Worksheets("Neg Bump").Select
Columns("A:A").Select
ActiveSheet.Paste
End If
any suggestions?
Brian