Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How do I include the name of the user who last updated a file in the footer?
E.g. last updated by xx / ddmmmyyyy -- pen |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
Maybe something along the lines of:- Private Sub Workbook_BeforePrint(Cancel As Boolean) Dim Sht As Worksheet For Each Sht In ThisWorkbook.Worksheets Sht.PageSetup.RightFooter = Environ("Username") Next Sht End Sub Mike "Penelope" wrote: How do I include the name of the user who last updated a file in the footer? E.g. last updated by xx / ddmmmyyyy -- pen |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks for your response... Can you tell me how/where to enter the lines...
I'm using Excel2003.... isn't there a drop-down menu or icon? -- pen "Mike H" wrote: Hi, Maybe something along the lines of:- Private Sub Workbook_BeforePrint(Cancel As Boolean) Dim Sht As Worksheet For Each Sht In ThisWorkbook.Worksheets Sht.PageSetup.RightFooter = Environ("Username") Next Sht End Sub Mike "Penelope" wrote: How do I include the name of the user who last updated a file in the footer? E.g. last updated by xx / ddmmmyyyy -- pen |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Penelope,
ALT+F11 to open VB editor. Double click 'This Workbook' On the right hand side panel select 'Workbook' from the left dropdown and 'Before Print' and paste it in there. Mike "Penelope" wrote: Thanks for your response... Can you tell me how/where to enter the lines... I'm using Excel2003.... isn't there a drop-down menu or icon? -- pen "Mike H" wrote: Hi, Maybe something along the lines of:- Private Sub Workbook_BeforePrint(Cancel As Boolean) Dim Sht As Worksheet For Each Sht In ThisWorkbook.Worksheets Sht.PageSetup.RightFooter = Environ("Username") Next Sht End Sub Mike "Penelope" wrote: How do I include the name of the user who last updated a file in the footer? E.g. last updated by xx / ddmmmyyyy -- pen |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to: Excel footer which tells me which user last saved sheet | Excel Discussion (Misc queries) | |||
Showing "Created by User, Date, Time" in Footer | Excel Discussion (Misc queries) | |||
How do I format a cell, so the user must use a user calendar? | Excel Discussion (Misc queries) | |||
How do I format a cell, so the user must use a user calendar? | Excel Discussion (Misc queries) | |||
User name in Footer | Excel Discussion (Misc queries) |