ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Adding a Worksheet and Renaming (https://www.excelbanter.com/excel-programming/411944-adding-worksheet-renaming.html)

[email protected]

Adding a Worksheet and Renaming
 
I am trying to add a Working in a Macro and then renaming the
Worksheet, but Excel likes to name the Sheets 1,2,3,etc, and you don't
know what the sheet name will be to select to rename at the time you
run the Macro. The following is a simple code that I have so far:
mnth = Cells(1, 4)
Sheets.Add
Sheets("Sheet2").Select
Sheets("Sheet2").Name = mnth

Can anyone help me get a solution to this problem?

Frank

Corey ....[_2_]

Adding a Worksheet and Renaming
 
Try:
Sub NewWks()
Sheets.Add
res = InputBox("What is the New Sheet Name?")
ActiveSheet.Name = res
End Sub

Corey....
wrote in message
...
I am trying to add a Working in a Macro and then renaming the
Worksheet, but Excel likes to name the Sheets 1,2,3,etc, and you don't
know what the sheet name will be to select to rename at the time you
run the Macro. The following is a simple code that I have so far:
mnth = Cells(1, 4)
Sheets.Add
Sheets("Sheet2").Select
Sheets("Sheet2").Name = mnth

Can anyone help me get a solution to this problem?

Frank




[email protected]

Adding a Worksheet and Renaming
 
On Jun 2, 9:38*pm, "Corey ...." wrote:
Try:
Sub NewWks()
* * Sheets.Add
* * res = InputBox("What is the New Sheet Name?")
* * ActiveSheet.Name = res
End Sub

wrote in message

...



I am trying to add a Working in a Macro and then renaming the
Worksheet, but Excel likes to name the Sheets 1,2,3,etc, and you don't
know what the sheet name will be to select to rename at the time you
run the Macro. *The following is a simple code that I have so far:
* *mnth = Cells(1, 4)
* *Sheets.Add
* *Sheets("Sheet2").Select
* *Sheets("Sheet2").Name = mnth


Can anyone help me get a solution to this problem?


Frank- Hide quoted text -


- Show quoted text -


Thanks for your help.

Frank

Jim Cone[_2_]

Adding a Worksheet and Renaming
 
Frank,

Dim mnth As String
mnth = Cells(1, 4).Text
Worksheets.Add befo=Worksheets(1), Count:=1
Worksheets(1).Name = mnth
--
Jim Cone
Portland, Oregon USA
http://www.realezsites.com/bus/primitivesoftware
(Excel Add-ins / Excel Programming)





wrote in message
I am trying to add a Working in a Macro and then renaming the
Worksheet, but Excel likes to name the Sheets 1,2,3,etc, and you don't
know what the sheet name will be to select to rename at the time you
run the Macro. The following is a simple code that I have so far:
mnth = Cells(1, 4)
Sheets.Add
Sheets("Sheet2").Select
Sheets("Sheet2").Name = mnth

Can anyone help me get a solution to this problem?
Frank


All times are GMT +1. The time now is 09:07 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com