Create Worksheet from Template

adakos

New Member
Joined
Mar 5, 2009
Messages
15
Im looking for a way to create a worksheet from a template within a workbook. Allow me to explain ---
I use this sheet for general timekeeping.
2cny2ad.jpg


I fill client name/activity, time, lcoation, Client #, etc.
What I am trying to do is to be able to check a box at the end of the sheet and have it create a new worksheet in the notebook with the name:
DATE-ROW#
(111309-14)

the sheet I am trying to use for the template is below.
de79y0.jpg


Ideally, this is done through VBA, correct?
I can have it pull the information on my own, I believe...

Is this even possible in excel?

-Thanks in Advance!
-Adakos
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
hate to bump my own thread but I lost the abiltiy to edit :

I realize this wasnt in my original post:


Rich (BB code):
Sub AddAsLastWorksheet()
 
Worksheets.Add (After:=Worksheets(Worksheets.Count)).Name = "MySheet"
 
End Sub

However, I am unsure how to link it to a check box, and make it pull information such as ROW number, and how to load a sheet from a template.. (or copy/paste)
Thanks again!
 
Upvote 0

Forum statistics

Threads
1,214,918
Messages
6,122,243
Members
449,075
Latest member
staticfluids

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