Soldato
		
		- Joined
- 6 Jan 2013
- Posts
- 22,390
- 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".
	
	
	
		
In the cell I put:
	
	
	
		
	
		
			
		
		
	
				
			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 FunctionIn the cell I put:
		Code:
	
	=LastAuthor() 
	 
 