Hi @LaurensM , thanks for your reply.
My Submit Button OnSelect property has the following code structure;
Patch(
'Share Point List',
Defaults('Share Point List'),
{
//Numerous Fields are sent to Share Point List
}
);
Patch(
'Share Point List',
Defaults('Share Point List'),
{
//Your own code to patch fields to lookup column
}
)
So basically I am creating a new item in the Share Point List in the first Patch, with numerous fields sent over. In the second patch I am looking up that newly created item and using your code to Patch the combobox values over to the same list item using the Component Name as the reference. However, I get the following error;
I did a separate Patch for your code within the same submit button as it looks up an existing item which is created in the first patch.
Not sure where I'm going wrong.
Thanks