Thread: Custom Header
View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
ts1 ts1 is offline
external usenet poster
 
Posts: 6
Default Custom Header

Jim,

I am still new to macro programming and tried using your suggestion in the
Workbook_open event with no luck. Can you please provide a some additional
guidance in the following scenario.

I have a workbook with 3 worksheets. There is a value in cell B2 of Sheet1
that I want the custom header of all three worksheets to have. Any help would
be much appreciated.

Thanks,
Tom S

"Jim Thomlinson" wrote:

Sub AddToHeader()
With Sheets("Sheet1")
.PageSetup.RightHeader = .Range("D1").Value
End With
End Sub
--
HTH...

Jim Thomlinson


"Richard" wrote:

Using Excel 2000.
1) I cut and paste data into an Excel spreadsheet.
2) There is a value in Cell D1.
3) I want to run a Macro, which will rearrange all the data in this
spreadsheet.
4) I know how to do all of it except:
I want the value in cell D1 to be placed in the custom header, right
side.
How can this be done?

Thanks.
--
Richard