G Guest Oct 17, 2006 #1 I would like to get the name of the person which has saved the workbook in the footer of the printout. What must I do?
I would like to get the name of the person which has saved the workbook in the footer of the printout. What must I do?
G Guest Oct 17, 2006 #2 something like this... sheets("Sheet1").Pagesetup.leftfooter = thisworkbook.BuiltinDocumentProperties("last saved author") This should be all on one line. You can add this to the print event if you want it to be dynamic... Post back if that was your intention...
something like this... sheets("Sheet1").Pagesetup.leftfooter = thisworkbook.BuiltinDocumentProperties("last saved author") This should be all on one line. You can add this to the print event if you want it to be dynamic... Post back if that was your intention...
G Guest Oct 19, 2006 #3 Hi Jim. It works! The value was ..."last author" not "last saved author". Add it in the procedure ...sub woorkbook_beforeprint() and it works like I wanted. Thank you very much
Hi Jim. It works! The value was ..."last author" not "last saved author". Add it in the procedure ...sub woorkbook_beforeprint() and it works like I wanted. Thank you very much