@MrEdward
The previous solution didn't work because it was designed for text type fields, for person or group type column, we will have to add a collection. Can you try to update the configuration to:
DataCardValue2 & DataCardValue16 (Add this same formula to both controls)-> OnChange -> Clear(CombinedCollection);ForAll(DataCardValue2.SelectedItems,Collect(CombinedCollection,{'@odata.type':"#Microsoft.Azure.Connectors.SharePoint.SPListExpandedUser",
Claims:"i:0#.f|membership|" & ThisRecord.Email,
Department:"",
DisplayName: ThisRecord.DisplayName,
Email: ThisRecord.Email,
JobTitle:"",
Picture:""
}));ForAll(DataCardValue16.SelectedItems,Collect(CombinedCollection,{'@odata.type':"#Microsoft.Azure.Connectors.SharePoint.SPListExpandedUser",
Claims:"i:0#.f|membership|" & ThisRecord.Email,
Department:"",
DisplayName: ThisRecord.DisplayName,
Email: ThisRecord.Email,
JobTitle:"",
Picture:""
}));Reset(ComboBox1)
Combobox1 -> DefaultSelectedItems -> CombinedCollection
Hope this Helps!
If this reply has answered your question or solved your issue, please mark this question as answered. Answered questions helps users in the future who may have the same issue or question quickly find a resolution via search. If you liked my response, please consider giving it a thumbs up. THANKS!