What's easier than right mouse clicking on the tab
of the worksheet that you want to copy, checking
"Create a copy" and then choosing the destination
workbook using the "To book" drop-down list.
Mark W.,
I appreciate your candid help, but apparently you missed the meaning of the word "programmatically". I know its possible within the excel environment itself, but this functionality has not been obviously exposed in the excel object model. So, if you have any insight on how its done in code, I'd love to see it. (how easy is that)
No, I didn't miss the meaning of "programmatically".
I just thought that functionality provided by the
GUI was so elegant that it didn't warrant the
creation of custom code.
Try this. It's "programatic" and you can even create a button and assign this macro to it.
Sub CopyNew()
'
' CopyNew Macro
'
'
Sheets("Output").Copy
End Sub