Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Okay, this is want I want to do. Have a macro that will make a copy of the
selected sheet and move it to the the end. Hopefully some kind spread sheet wizard can provide me with answer. |
#2
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Sub copytoend()
With ActiveWindow.SelectedSheets .copy After:=Sheets(Sheets.Count) End With End Sub Gord Dibben MS Excel MVP On Sat, 16 Feb 2008 03:49:18 GMT, Bryan wrote: Okay, this is want I want to do. Have a macro that will make a copy of the selected sheet and move it to the the end. Hopefully some kind spread sheet wizard can provide me with answer. |
#3
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Slightly different
Sub copysheet() ActiveSheet.Copy after:=Sheets(Sheets.Count) End Sub -- Don Guillett Microsoft MVP Excel SalesAid Software "Bryan" wrote in message .. . Okay, this is want I want to do. Have a macro that will make a copy of the selected sheet and move it to the the end. Hopefully some kind spread sheet wizard can provide me with answer. |
#4
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Much more concise.
Gord On Sat, 16 Feb 2008 10:37:23 -0600, "Don Guillett" wrote: Slightly different Sub copysheet() ActiveSheet.Copy after:=Sheets(Sheets.Count) End Sub |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Macro Help Needed - Excel 2007 - Print Macro with Auto Sort | Excel Worksheet Functions | |||
Macro help needed | Excel Discussion (Misc queries) | |||
MACRO NEEDED | Excel Discussion (Misc queries) | |||
Macro needed to Paste Values and prevent Macro operation | Excel Discussion (Misc queries) | |||
Macro needed to Paste Values and prevent Macro operation | Excel Discussion (Misc queries) |