I used this a while ago in a previous app and I have no issues with it. However on the new app, all the names are prepended with "i:0#.f|membership|". How do I remove this and just display the Display Name of the user?
Am I using the method incorrectly?
Sort(
ForAll(
GroupBy(
Ungroup(
ForAll(myListSharePoint,
{Items: 'People Field'}
),
"Items"
),
"DisplayName", "_people"
),
Patch(First(_people), {DisplayName: DisplayName})
),
DisplayName
)
Solved! Go to Solution.
Hi @WorkHard,
This seems like a ComboBox. Are you sure the DisplayFields property is set for the right column?
Hi @WorkHard,
This seems like a ComboBox. Are you sure the DisplayFields property is set for the right column?
DisplayFields was indeed improperly set. Appreciate the help!