@v-siky-msft
Hi, thank you for the reply! So, I don't want to make any config changes to SP side. I'm populating both SP fields in comma delimited form as I DO NOT have any values to chose from on the SharePoint List for either. Reason being, its forever changing.
This is how I have it setup on the PowerApps side where I want to patch TO:
PFDAlias_Link:
I have a ComboBox embedded in this DataCard with a collection as the Source. This collection is a list of all Name/Aliases from SharePoint List 1 i mentioned in my first post.
The DefaultSelectedItems for this property is as follows:
If(InvestmentEditForm.Mode = New,
Filter(DevicePlatformList, Alias = "Not Applicable"),
InvestmentEditForm.Mode <> New, Filter(DevicePlatformList, Alias in Split(ThisItem.Device_Platform, ", ")))
PFDID_Link is as follows:
The Default property is set to the following:
Concat(Filter(DevicePlatformList, Alias in CB_Device_Platform.SelectedItems.Alias),Name,",")
"CB_Device_Platform" is the ComboBox embedded in PFDAlias_Link.
Therefore, both fields submit the comma delimited list directly to SharePoint. What I need to be able to do is if one of those Alias values change (the ID's will never change, obviously) from SharePoint List 1 (the list that is the source of the collection) I need to be able to scan SharePoint List 2 and update accordingly. The plan is to use a patch command on the OnChange property from SharePoint List 1.
Is this possible?