Ecxel Help Request

Soldato
Joined
6 Jan 2013
Posts
22,309
Location
Rollergirl
GD is usually great for this...

I want to add the name of the last author in a cell. I have used this VBA code to do it, but it only adds the first name "Joe" but I want to to say "Joe Bloggs".

Code:
Function LastAuthor()
LastAuthor = ActiveWorkbook.BuiltinDocumentProperties("Last Author")
End Function



In the cell I put:
Code:
=LastAuthor()
 
Back
Top Bottom