Hi,
Newbie to Macros
Essentially I'm trying to run a macro in which I can select a word from a drop down list but unfortunately when I record the macro..the cell copies as a value and therefore I can't re-run the macro?
Sub master()
'
' master Macro
'
'
Activecell.select
Selection.Copy
Sheets("Data").Select
ActiveSheet.Range("$A$1:$N$6546").AutoFilter Field:=3, Criteria1:= _
"Apples"
End Sub
I'm trying to do it so instead of "Apples" it comes up with whatever is in the active cell.
Any help appreciated!
Newbie to Macros
Essentially I'm trying to run a macro in which I can select a word from a drop down list but unfortunately when I record the macro..the cell copies as a value and therefore I can't re-run the macro?
Sub master()
'
' master Macro
'
'
Activecell.select
Selection.Copy
Sheets("Data").Select
ActiveSheet.Range("$A$1:$N$6546").AutoFilter Field:=3, Criteria1:= _
"Apples"
End Sub
I'm trying to do it so instead of "Apples" it comes up with whatever is in the active cell.
Any help appreciated!