Multiple-selection-enabled People field properties access for View Formatting.

Copper Contributor

Hello dears,

 

I've a list with a people field ("Owners") allowing multiple selection. There will always be at least 2 people in that field.

 

Is it somehow possible to access the properties of the people field in the context of View Formatting (RowFormatter) ?

 

I'm pretty sure its not possible to loop through the values of such array but maybe its possible to arbitrarily choose like for the 2 first elements?

 

Something like [$Owners].[0].email ?

 

Thanks for your help!

1 Reply
Ok this does the trick:

"txtContent": "[$Owners.title]"

But it would have been more convenient to have an index to get a specific item in the array.
So I could have chose the 1st and 2nd owners and display them in a list / table or something.