J
jay d
I have this code below. i want it to perform a task on project lis
sheet while the button to execute the code is on another sheet, but it
executing the task on the same sheet the button is on, hence taking th
wrong data. what am i missing from the code?
Code
-------------------
Sub smi()
'
' smi Macro
'
Range("A4:A" & Range("A3").End(xlDown).Row & ",D4:E" & Range("A3").End(xlDown).Row).Select
Selection.Copy
Sheets("Project List").Select
Range("A" & ((Range("A3").End(xlDown).Row) + 1)).Select
ActiveSheet.Paste
End Su
-------------------
thanks
Jami
sheet while the button to execute the code is on another sheet, but it
executing the task on the same sheet the button is on, hence taking th
wrong data. what am i missing from the code?
Code
-------------------
Sub smi()
'
' smi Macro
'
Range("A4:A" & Range("A3").End(xlDown).Row & ",D4:E" & Range("A3").End(xlDown).Row).Select
Selection.Copy
Sheets("Project List").Select
Range("A" & ((Range("A3").End(xlDown).Row) + 1)).Select
ActiveSheet.Paste
End Su
-------------------
thanks
Jami