change sheet name macro
VERY QUICK & VERY DIRTY
Sub newsheet()
Dim ws As Worksheet
Dim nm As String
Set ws = Worksheets.Add
ws.Name = InputBox("sheet name")
End Sub
"WBTKbeezy" wrote:
I have a large spreadsheet and I am trying to add a macro that allows me to
add a worksheet AND have an input box pop up so I can name the worksheet
whatever name I need it to be. Is this possible?
|