I am trying to update values in a collection based on another collection.
This my code that I am currently executing on a button press.

I am trying to update values in a collection based on another collection.
This my code that I am currently executing on a button press.
Hi @NthnClrksn ,
If I understand what you want,
After your ClearCollect functions, use this code
UpdateIf(
CustomerComponentB,
Parameter in TestList.Parameter,
{
Required: false
}
);
Hope this helps