userFullName

To return the full name of a user

This function tells you the full name of a user. If not specified differently, the function will return the current user.

The full name will be pulled from the first name and last name, not the display name.

Syntax

userFullName()

userFullName(user)

Return

string

Examples

userFullName() To return the full name of the current user.

userFullName()

Result: Steve Rogers (if Captain America is currently using the database)

userFullName(myUser) To return the full name of a given user.

Choose the User field and select Black Widow.

userFullName(User)

Result: Natasha Romanoff (if Black Widow is selected in the User field)

See also

user, which returns the current or a specific user.

userFirstName, which returns the first name of a user.

userLastName, which returns the last name of a user.

Last updated