Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default How can I save my footnote to use in other workbooks?

I would like to save my standard footnote and reuse it in other 2007 office
documents. Do I need to set up a template document or is there a way to
automate this task?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default How can I save my footnote to use in other workbooks?

What do you consider a "footnote"?

Do you mean a "footer" when printing?

You can automate by using a macro. Example below.

Sub Path_All_Sheets()
Set wkbktodo = ActiveWorkbook
For Each WS In wkbktodo.Worksheets
WS.PageSetup.RightFooter = ActiveWorkbook.FullName & " " & Chr(13) _
& Application.UserName & " " & Date
Next
End Sub

OR....................

Open a new workbook. Customize as you wish including your print
settings.........group the sheets before setup so's all sheets get same
Footer setup...............those items you want are available through the
Icons on Custom Footer.

FileSave As Type: scroll down to Excel Template(*.XLT) and select. Name
your workbook "BOOK"(no quotes). Excel will add the .XLT to save as
BOOK.XLT.

Store this workbook in the XLSTART folder usually located at........

C:\Documents and Settings\username\Application Data\Microsoft\Excel\XLSTART

This will be the default workbook for the Toolbar button
FileNew or CTRL + n

WARNING..........Do not use FileNew...Blank Workbook
or you will get the Excel default workbook.

NOTE: Existing workbooks are not affected by these settings.

You can also open a new workbook and delete all but one sheet. Customize as
you wish then save this as SHEET.XLT in XLSTART folder also. It now becomes
the default InsertSheet.

More can be found on this in Help under "templates"(no quotes).

Instructions are for Excel 2003 and earlier.

2007 is similar except you would save as BOOK.xltx


Gord Dibben MS Excel MVP


On Fri, 5 Feb 2010 12:31:02 -0800, MSofficeuser
wrote:

I would like to save my standard footnote and reuse it in other 2007 office
documents. Do I need to set up a template document or is there a way to
automate this task?


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
MACRO HELP: Save All Sheets To Individual Workbooks Zorro Excel Discussion (Misc queries) 3 September 2nd 06 08:06 PM
always prompted to save opened workbooks kjbrr Excel Discussion (Misc queries) 2 July 31st 06 09:10 PM
Save as changing links in other workbooks David P. Excel Discussion (Misc queries) 0 July 11th 06 12:30 AM
Save all open workbooks Vicki Excel Discussion (Misc queries) 1 November 29th 05 12:54 PM
Macro to save sheets as separate workbooks Zorro Excel Discussion (Misc queries) 3 September 28th 05 12:21 AM


All times are GMT +1. The time now is 06:11 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"