Pregunta

When I use a contact list with a column "Person" it displays the person's name and last name in a certain format.

Ex: Melone (Jack)

But I just want the first name and then the last name.

Ex: Jack Melone

Is that possible, if so how can I do that?

Greetings,

P

¿Fue útil?

Solución

You can set the display format of the Person field when editing the column's settings. Find the "Show field" dropdown in the column settings, and experiment with the options:

enter image description here

In my test list, selecting "Name" or "Name (with presence)" yields the correct results.

Otros consejos

The easy way, we can create a Calculated column "Person" with the Formula below.

=[First Name]&" "&[Last Name]

enter image description here

Licenciado bajo: CC-BY-SA con atribución
scroll top