How do I insert template in new sheet of pre-existing excel file?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I created an Excel worksheet template, but i can't figure out how to insert
it into a new sheet in an already-existing excel workbook.

I need to use this worksheet template monthly and wanted to keep 12 sheets
(a full year) in one workbook, all together.

There must be some way to do this!!!
 
One way is to right click on the template sheet>move or copy>create a
copy>top input box>etc
record a macro if desired.
 
To create a single sheet template for inserting into an existing workbook.

1. Open a new workbook.
2. Delete all but one sheet.
3. Customizw that sheet as you wish.
4. File>Save As>File Type>MS Excel Template)*.xlt)
5. Name it SHEET and let Excel look after the xlt part.
6. Store it in your XLSTART folder.

It will be the default Insert>Worksheet.


Gord Dibben MS Excel MVP
 
Thanks so much for your response, Gord.
I don't want it to be the default sheet though. I use excel for other things
and I don't want this to ALWAYS be the default. What I can't figure out is
how to be in a workbook and then insert a new sheet in there (but ONLY in
that workbook) that comes up as my template.
Does that make sense?
Thanks again,
 
Could you have it in your workbook and just copy it whenever you needed a new
sheet inserted?

You could have it as a hidden sheet if you wished.

Then run this macro to copy it wherever you wish.

Sub insert()
Dim wks As Worksheet
Set wks = Sheets("Template") 'Sheet to be copied
wks.Copy After:=ActiveSheet
ActiveSheet.Visible = True

End Sub


Gord
 

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

Back
Top