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.PrintFmtName$("Veen, A. van der") 'A. van der Veen Debug.PrintFmtName$("Jan des Bouvrie") 'Jan des Bouvrie Debug.Print">" & FmtName$(Null) & "<"'>< EndSub