How can I copy a worksheet and rename at the same time?

RE: Copy worksheet and rename sheet by GarysStudent

GarysStudent
Fri Jul 25 06:33:00 CDT 2008

Put the new name in a cell, say A1 and run this macro:

Sub Macro1()
ActiveSheet.Copy After:=Sheets(1)
ActiveSheet.Name = Range("A1").Value
End Sub

--
Gary''s Student - gsnu200796


"Ernst - EXE Graphics" wrote:

> How can I copy a worksheet and rename at the same time?

Re: Copy worksheet and rename sheet by John

John
Fri Jul 25 06:50:45 CDT 2008

If I got you right! just do a "Save-As"
HTH
John
"Ernst - EXE Graphics" <ErnstEXEGraphics@discussions.microsoft.com> wrote in
message news:523A3D3B-BD3D-4EE5-B06C-6B6379D01843@microsoft.com...
> How can I copy a worksheet and rename at the same time?


Re: Copy worksheet and rename sheet by Don

Don
Fri Jul 25 07:08:27 CDT 2008

OP said sheet

--
Don Guillett
Microsoft MVP Excel
SalesAid Software
dguillett1@austin.rr.com
"John" <johnd@newlook.com> wrote in message
news:Ogoutyk7IHA.3260@TK2MSFTNGP03.phx.gbl...
> If I got you right! just do a "Save-As"
> HTH
> John
> "Ernst - EXE Graphics" <ErnstEXEGraphics@discussions.microsoft.com> wrote
> in message news:523A3D3B-BD3D-4EE5-B06C-6B6379D01843@microsoft.com...
>> How can I copy a worksheet and rename at the same time?
>


Re: Copy worksheet and rename sheet by John

John
Fri Jul 25 07:18:41 CDT 2008

Thanks Don, I knew I needed more coffee this morning.
John
"Don Guillett" <dguillett1@austin.rr.com> wrote in message
news:u2vuw8k7IHA.2064@TK2MSFTNGP02.phx.gbl...
> OP said sheet
>
> --
> Don Guillett
> Microsoft MVP Excel
> SalesAid Software
> dguillett1@austin.rr.com
> "John" <johnd@newlook.com> wrote in message
> news:Ogoutyk7IHA.3260@TK2MSFTNGP03.phx.gbl...
>> If I got you right! just do a "Save-As"
>> HTH
>> John
>> "Ernst - EXE Graphics" <ErnstEXEGraphics@discussions.microsoft.com> wrote
>> in message news:523A3D3B-BD3D-4EE5-B06C-6B6379D01843@microsoft.com...
>>> How can I copy a worksheet and rename at the same time?
>>
>