V Vercingetorix.XIII Sep 23, 2008 #1 Is there a way to put something in an excel spreadsheet as a signature or logo or something to show that you made it?
Is there a way to put something in an excel spreadsheet as a signature or logo or something to show that you made it?
G Gord Dibben Sep 23, 2008 #2 Private Sub Workbook_Open() Sheets("Sheet1").Range("A1").Value _ = ActiveWorkbook.BuiltinDocumentProperties("Author") End Sub Gord Dibben MS Excel MVP
Private Sub Workbook_Open() Sheets("Sheet1").Range("A1").Value _ = ActiveWorkbook.BuiltinDocumentProperties("Author") End Sub Gord Dibben MS Excel MVP
J JP Sep 23, 2008 #3 Personally I prefer a command button (Control Toolbox) that fills in the cell. Just thought I'd share that. --JP
Personally I prefer a command button (Control Toolbox) that fills in the cell. Just thought I'd share that. --JP
G Gord Dibben Sep 23, 2008 #4 Different strokes..................and all that. The workbook_open ensures the cell is filled in. A button requires a user operation. Just my take. Gord
Different strokes..................and all that. The workbook_open ensures the cell is filled in. A button requires a user operation. Just my take. Gord