View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
DrB DrB is offline
external usenet poster
 
Posts: 20
Default Inserting day with date automatically - how?

I copied the following:
Private Sub Workbook_BeforePrint(Cancel As Boolean)
With ActiveSheet.PageSetup
.LeftHeader = Format(Date, "ddd dd mmm yyyy")
End With
End Sub

and pasted into a new workbook code obtain from viewing code in the file
that I wanted this option, but nothing happened. Went into viewing
Header/Footer and found nothing new there. Is there another step?


"Bob Phillips" wrote in message
...
Private Sub Workbook_BeforePrint(Cancel As Boolean)
With ActiveSheet.PageSetup
.LeftHeader = Format(Date, "ddd dd mmm yyyy")
End With
End Sub

'This is workbook event code.
'To input this code, right click on the Excel icon on the worksheet
'(or next to the File menu if you maximise your workbooks),
'select View Code from the menu, and paste the code


--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"DrB" wrote in message
...
Have "date" in header updating automatically in Excel 2002 (XP). How can
I
also have the "day" inserted there and updated automatically?