How can I customize the header to refer to a specific cell in th worksheet
B Bob Phillips Oct 27, 2004 #2 Private Sub Workbook_BeforePrint(Cancel As Boolean) Dim sText As String With ActiveSheet .PageSetup.LeftHeader = .Range("A1").Value End With End Sub
Private Sub Workbook_BeforePrint(Cancel As Boolean) Dim sText As String With ActiveSheet .PageSetup.LeftHeader = .Range("A1").Value End With End Sub