Apple2_1979
Board Regular
- Joined
- Feb 17, 2012
- Messages
- 56
Hi All,
I need a VBA solution. I need to filter column AL and paste the results to column AK. So far I have this,
Sub Macro7()
'
' Macro7 Macro
'
'
With ActiveSheet.Range("AL2:AL1859")
.AutoFilter Field:=38, Criteria1:= _
"=*isolat*", Operator:=xlAnd, Criteria2:="<>*isolation*"
On Error Resume Next
.SpecialCells(xlCellTypeVisible).Cut Range("AK2")
On Error GoTo 0
End With
End Sub
But it stops at the filter and does not cut then paste. Thank-you in advance.
I need a VBA solution. I need to filter column AL and paste the results to column AK. So far I have this,
Sub Macro7()
'
' Macro7 Macro
'
'
With ActiveSheet.Range("AL2:AL1859")
.AutoFilter Field:=38, Criteria1:= _
"=*isolat*", Operator:=xlAnd, Criteria2:="<>*isolation*"
On Error Resume Next
.SpecialCells(xlCellTypeVisible).Cut Range("AK2")
On Error GoTo 0
End With
End Sub
But it stops at the filter and does not cut then paste. Thank-you in advance.