Hello,
I have multiple sharepoint list that I am using. For reference I will refer to them as SPL-A and SPL-B
I am trying to Patch SPL-A from a combo box that can have multiple values. That combo box is getting it's information from a filtered SPL-B. When I go to patch SPL-A with the information selected with the code below
Patch(
SPL-A,
Defaults(SPL-A),
Field1:DataCardValue5.Text,
Field2:DataCardValue6.Text,
Field3:DataCardValue7.Text,
Field4:DataCardValue8.Text,
Field5:DataCardValue1.Text,
Field6:DataCardValue13.Text,
Field7:Var1,
Field8:Var2,
Field9:Var3,
Field10:DataCardValue9.Selected,
Field11:DataCardValue10.SelectedItems
}
);
I get

Any insight on this would be greatly appreciated.