Hi,
I have the following:
Sharepoint1 <- contains the saved data
PersonList <- contains person lists
I have a problem when I try to edit form, the saved data from Sharepoint1 does not showup. This only happens when I try to change the Items property to use PersonList.
Below are the properties on edit form,
Items:
Distinct(Filter(PersonList, Column1 = ComboxBoxValue.Selected.Result).ColumnPerson, ColumnPerson.DisplayName)
DefaultSelectedItems:
Parent.Default
Default:
ThisItem.ColumnPerson
Update:
{
Claims: LookUp(PersonList, ColumnPerson.DisplayName=ComboBoxValue.Selected.Result, ColumnPerson).Claims
DisplayName: LookUp(PersonList, ColumnPerson.DisplayName=ComboBoxValue.Selected.Result, ColumnPerson).DisplayName,
Email: LookUp(PersonList, ColumnPerson.DisplayName=ComboBoxValue.Selected.Result, ColumnPerson).Email,
Department: "",
JobTitle: "",
Picture: ""
}
Any thoughts?
Thanks!