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

有帮助吗?

解决方案

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.

其他提示

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

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

enter image description here

许可以下: CC-BY-SA归因
scroll top