Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Does any one know how to set up dynamic Headers in Excel for multiple
worksheets? For example, the first worksheet header would be "Exhibit 1", the second worksheet header would be "Exhibit 2" and so on. Please advise and thank you very much. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
One possibility. This assumes Exhibit 1 is in cell A1 of Sheet 1
Enter 1 in cell B1 of sheet 1 Enter =CONCATENATE("Exhibit ",B1) Enter =CONCATENATE("Exhibit ",Sheet1!B1+1) in A1 of Sheet 2 Etc. Dave -- A hint to posters: Specific, detailed questions are more likely to be answered than questions that provide no detail about your problem. "Danny Coyle" wrote: Does any one know how to set up dynamic Headers in Excel for multiple worksheets? For example, the first worksheet header would be "Exhibit 1", the second worksheet header would be "Exhibit 2" and so on. Please advise and thank you very much. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Danny
Sub Exhibit_in_Header() Dim ws As Worksheet Dim i As Long For i = 1 To Worksheets.Count For Each ws In ActiveWorkbook.Worksheets Sheets(i).PageSetup.LeftHeader = "Exhibit " & i Next ws Next i End Sub Gord Dibben MS Excel MVP On Wed, 21 Mar 2007 12:32:03 -0700, Danny Coyle wrote: Does any one know how to set up dynamic Headers in Excel for multiple worksheets? For example, the first worksheet header would be "Exhibit 1", the second worksheet header would be "Exhibit 2" and so on. Please advise and thank you very much. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
custom header used in other excel worksheets | Excel Discussion (Misc queries) | |||
Can you link a custom property to an Excel custom header text? | Setting up and Configuration of Excel | |||
Excel: custom header - is it possible to paste into header? | Excel Worksheet Functions | |||
How can I using Excel custom document properties in the header? | Excel Worksheet Functions | |||
how do I permanetly add custom header to excel header list? | Excel Discussion (Misc queries) |