Adding new spreadsheet where spreadsheet name is....

AndyD

Active Member
Joined
Nov 14, 2002
Messages
449
Hi
I want users to be able to add a date to a field (as eg 01.01.2004) press a button then for macro to make a copy of the spreadsheet (in the same workbook) and call it 01.01.2004

any ideas mucho appreciated
cheers all
Andy
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
hi try this one!
this assumes that the name of the new sheet created is stored in A1.


<font face=Courier New><SPAN style="color:#00007F">Sub</SPAN> CopyAndRename()
<SPAN style="color:#00007F">On</SPAN> <SPAN style="color:#00007F">Error</SPAN> <SPAN style="color:#00007F">GoTo</SPAN> owari
    <SPAN style="color:#00007F">Set</SPAN> oldsheet = ActiveSheet
    <SPAN style="color:#00007F">Set</SPAN> newsheet1 = Sheets.Add
    oldsheet.Select
    Cells.Select
    Selection.Copy
    newsheet1.Paste
    Sheets(newsheet1.Name).Name = oldsheet.Range("a1").Value
owari:
<SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">Sub</SPAN></FONT>
 
Upvote 0
thanks, that's brilliant!

if want to go to the new sheet, whats the best way of doing...?

sheets(range("A1").value).select does not seem to work

cheers
Andy
 
Upvote 0
hi!
try this.
range("A1").value
should be complete.
worksheets("sheet1").range("A1").value
you might end up the active sheet containing no or wrong value in A1.
but if you want it to make the new sheet the active sheet after copying, call
newsheet1.select.
 
Upvote 0
hi

what do i need to select a worksheet based on a value in a sheet?


Worksheets("results").Range("AK1").value.Select

does not work

cheers all
Andy
 
Upvote 0

Forum statistics

Threads
1,215,003
Messages
6,122,655
Members
449,091
Latest member
peppernaut

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top