Opening a new tab

E

Ed Davis

I would like to open a new tab with the name that is in a cell.
Example in Cell b10 I have a number in this case it is 13245 and would like
to open a new tab with that number 13245.
The number will change many times.
I would like to do this in a macro.
 
D

Don Guillett

You did mean to say ADD a sheet, didn't you.

Sub addsheetandname()
Sheets.Add.Name = Range("b10")
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top