Programming Reference Manual
 
Syntax
 
FmtName[$](S$)
 
Description
Return a string from S$ where a combined person's name is re-ordered is a comma is used as delimeter.
 
Parameter
Description
S$
Return the string value of this after the name parts have been re-ordered. If this value is Null then an empty string is returned.
See Also
 
Example
 
Sub Main
 
Debug.Print FmtName$("Veen, A. van der") 'A. van der Veen
Debug.Print FmtName$("Jan des Bouvrie") 'Jan des Bouvrie
Debug.Print ">" & FmtName$(Null) & "<" '><
 
End Sub