![]() |
| If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|||||||
|
|
Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
I would like to include a footer that reads from the sheet being printed.
Does anyone know of a practical way to do this? -- mgelde |
| Ads |
|
#2
|
|||
|
|||
|
I was able to come up with code that does this. See Below:
This code goes in the VBAProject Workbook section Private Sub Workbook_BeforePrint(Cancel As Boolean) Dim Wks As Worksheet Dim stFullFileName As String Dim stCompanyName As String stCompanyName = Worksheets("Sheet1").Range("G19").Value stFullFileName = ThisWorkbook.FullName For Each Wks In ThisWorkbook.Worksheets With Wks.PageSetup .LeftFooter = stCompanyName .CenterFooter = "" .RightFooter = "" End With Next Wks End Sub -- mgelde "mge" wrote: > I would like to include a footer that reads from the sheet being printed. > Does anyone know of a practical way to do this? > -- > mgelde |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Can't Excel create dynamic web pages any more? | LilyMudd | Excel Discussion (Misc queries) | 1 | November 5th 08 03:51 PM |
| Create header/footer txt file and link to Excel worksheets | marc | Excel Discussion (Misc queries) | 0 | January 24th 08 08:15 PM |
| How do you create a complex footer (e.g. title block) in Excel? | Yrrag | Excel Discussion (Misc queries) | 2 | November 14th 07 03:24 PM |
| Create capability to Paste Text into an Excel Footer | MikeK | Excel Discussion (Misc queries) | 1 | December 8th 05 03:14 PM |
| Create a custom footer for all Excel worksheets at one time... | bigcat | Excel Discussion (Misc queries) | 2 | March 31st 05 12:15 AM |