J John Young Dec 16, 2003 #1 How do I copy a sheet so that it also copies any buttons/event handlers/vba code that is associated with that sheet? TIA John
How do I copy a sheet so that it also copies any buttons/event handlers/vba code that is associated with that sheet? TIA John
J John Young Dec 17, 2003 #3 Sorry, I should have mentioned that I was trying to use VBA.. Thanks John
D Don Guillett Dec 17, 2003 #4 John, Have you learned how to use the macro recorder? I just recorded this. It can be shortened by eliminating the 1st line entirely. Sub Macro2() Sheets("Sheet1").Select Sheets("Sheet1").Copy After:=Sheets(5) End Sub
John, Have you learned how to use the macro recorder? I just recorded this. It can be shortened by eliminating the 1st line entirely. Sub Macro2() Sheets("Sheet1").Select Sheets("Sheet1").Copy After:=Sheets(5) End Sub
J John Young Dec 17, 2003 #5 LOL, I always forget about the macro recorder... Thanks for refreshing my memory.. John