NEW sheet Macro

THKUCOMEAGAIN

New Member
Joined
Jan 5, 2012
Messages
12
Is there a way to create and new macro that i can link to a button that will create an new sheet copy my format of a previous sheet, then apply that to the new sheet, then change the name of the new sheet to the current date (but the date in the macro has to imput the current date so it would change everyday)

I need to bc its a main part of my spread sheet
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
Is there a way to create and new macro that i can link to a button that will create an new sheet copy my format of a previous sheet, then apply that to the new sheet, then change the name of the new sheet to the current date (but the date in the macro has to imput the current date so it would change everyday)

I need to bc its a main part of my spread sheet

Probably better ways, but maybe:

Code:
Sub THKUCOMEAGAIN()
'
    Sheets("PREVIOUS").Copy Before:=Sheets(1)
    Cells.ClearContents
    Range("A1") = Date
    Range("A1").NumberFormat = "[$-409]d-mmm-yy;@"
    ActiveSheet.Name = Range("A1").Text
    Range("A1").Clear
    
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,472
Messages
6,125,004
Members
449,203
Latest member
Daymo66

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