I have a new requirement with this to check for empty fields and populate the UpdateContext based on one or the other record.
For example,
Field 1: Target has no data in this field but Subordinate does. I want the subordinate value.
Field 2: Target has data and Subordinate does not. I want to keep the target value.
Field 3: Target has data and Subordinate has data. I want to keep target data.
Field 4: Target has no data and Subordinate has no data. I do not want to update this field.
I have tried writing an if statement to handle this but it does not work because you always have to have 3 parameters in if, in the situation where there is no data at all, the Merge action throws an error because I'm passing null.