hi,
If i have some cells copied on the clipboard then move to another sheet that has this code embedded;
It forgets the copied data from the previous sheet, any workaround for this?
If i have some cells copied on the clipboard then move to another sheet that has this code embedded;
Code:
Private Sub Worksheet_Activate()
ActiveSheet.AutoFilterMode = False
Application.ScreenUpdating = False
Rows("1:1").Select
Selection.AutoFilter
Selection.AutoFilter Field:=14, Criteria1:="="
Selection.AutoFilter Field:=8, Criteria1:=">=1", Operator:=xlAnd
Application.ScreenUpdating = True
End Sub
It forgets the copied data from the previous sheet, any workaround for this?