Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
is there any way to have the author of a workbook printed in the footer?
|
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
A UDF and a macro will do the trick.
Sub Props_In_Footer() With ActiveSheet .PageSetup.CenterFooter = DocProps("last author") End With End Sub '=DOCPROPS("last author") 'or '=DOCPROPS("last save time") Function DocProps(prop As String) Application.Volatile On Error GoTo err_value DocProps = ActiveWorkbook.BuiltinDocumentProperties _ (prop) Exit Function err_value: DocProps = CVErr(xlErrValue) End Function Gord Dibben MS Excel MVP On Wed, 15 Mar 2006 18:21:06 -0000, "jiwolf" wrote: is there any way to have the author of a workbook printed in the footer? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Extra Row in Defined Print Area | Excel Discussion (Misc queries) | |||
Macro to open print window and set to print entire workbook | Excel Discussion (Misc queries) | |||
set the print area print multiple tabs | Excel Discussion (Misc queries) | |||
UDF and Calculation tree | Links and Linking in Excel | |||
Printing - Have to set print area 1 column further than necessary | Excel Discussion (Misc queries) |