Signature or Logo

  • Thread starter Thread starter Vercingetorix.XIII
  • Start date Start date
V

Vercingetorix.XIII

Is there a way to put something in an excel spreadsheet as a signature or
logo or something to show that you made it?
 
Private Sub Workbook_Open()
Sheets("Sheet1").Range("A1").Value _
= ActiveWorkbook.BuiltinDocumentProperties("Author")
End Sub


Gord Dibben MS Excel MVP
 
Personally I prefer a command button (Control Toolbox) that fills in
the cell.

Just thought I'd share that. :)

--JP
 
Different strokes..................and all that.

The workbook_open ensures the cell is filled in.

A button requires a user operation.

Just my take.


Gord
 
Back
Top