@Anonymous
1) The Default property of your DataCard
Default: I have nothing
The Default property of your DataCard should be ThisItem.yourColumnName
2) The Update property of your DataCard
Update:
{Claims:"i:0#.f|membership|" & Lower(ComboBox2.Selected.Mail),
DisplayName: ComboBox2.Selected.DisplayName,
Email: ComboBox2.Selected.Mail
}
As mentioned in Message #4, this needs to be:
{
Claims:"i:0#.f|membership|" & Lower(ComboBox2.Selected.Mail),
Department:"",
DisplayName: ComboBox2.Selected.DisplayName,
Email: ComboBox2.Selected.Mail,
JobTitle:".",
Picture:"."
}
Please change accordingly.
3) The DefaultSelectedItems property of your Combobox
DefaultSelectedItems: Nothing
This should be:
Office365Users.SearchUserV2({searchTerm: ThisItem.yourColumnName.Email}).value
4) The Items property of your Combobox
Items: Office365Users.SearchUserV2({searchTerm: Self.SearchText, top:10}).value
This is fine.
also
5) That we are dealing with a Single select Person column in your list
Yes, we are dealing with a Single select Person column in my list
Very good!
6) That when you say it is not saved, that you have confirmed this by looking at the actual record in the list and not just that it is not displaying when you view the item again (this is significant).
I confirm it everywhere all the time, it is not saving
Yep, not with the formula you had for update. Just wanted to make sure that nothing was going in the actual record.
Correct the items above and see how that goes.