UserToName()
Returns the user’s name.
Variants
UserToName(User user)
Returns the full name of a given user, with the first name first.
Parameters
- user
- The user to check.
Returns
Text
Examples
UserToName([Created By])
returns "John Doe" for a record created by the user John Doe.
UserToName(User user, Text format)
Returns the full name of a given user u.
Parameters
- user
- The user to check.
- format
- The format string. Use "FF" to return the full name first, or "LF" to return the full name last.
Returns
Text
Examples
UserToName([Record Owner], "FF")
returns "John Doe" for a record owned by the user John Doe.UserToName([Record Owner], "LF")
returns "Doe, John" for a record owned by the user John Doe.