Hi all,
i have built a Products list on Sharepoint which contains dropdown multichoice column Country(lookup to another list called Locations). I used PowerApps to customize that column Country so it can take disctinct values of countries from Locations list and save it to Products list when selected via drop down.
Saving when creating new record works fine. But when i edit the record and change some other attribute and click save, previously selected values in column Country dissapear.
On the Update event on my data card i use the following logic:
ForAll(DataCardValue4.SelectedItems,
{
Id: LookUp(Locations, Country=Result,ID),
Value: DataCardValue4.Selected.Result
}
)
Any ideas what might be the issue?
Thanks a lot!