devxlogo

FormatFullName – Create a full name in the format “LastName, FirstName”

FormatFullName – Create a full name in the format “LastName, FirstName”

' Takes a first and last name and converts it to the format LastName, FirstNameFunction FormatFullName(ByVal FirstName As String, ByVal LastName As String) As _    String    FirstName = Trim$(FirstName)    LastName = Trim$(LastName)        If FirstName = "" Then        ' If they only have a first name, return it.        FormatFullName = LastName    ElseIf LastName = "" Then        ' If they only have a last name, return it.        FormatFullName = FirstName    Else        FormatFullName = LastName & ", " & FirstName    End IfEnd Function'###########################################################'#'#   This rountime has been brought to you by'#   Pragmatic Software Co. Inc, the creators of Defect Tracker,'#   the tool of choice for tracking functional specifications,'#   test cases and software bugs.'#   Learn more at http://www.DefectTracker.com.'#   Affiliate program also available at'#   http://www.PragmaticSW.com/AffiliateSignup.'#'###########################################################

See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist