Hello,
Can anyone help me figure out how to Patch values from one collection into another collection?
Scenario:
- User selects multiple items
- All items put into a collection
- I then want to Patch that Collection into another Collection
I'm confused on how to use Patch and Defaults to add a new record to the 2nd Collection. I've tried:
ForAll(col1st,
Patch(col2nd,
Defaults(col2nd),
{
testNum: col1st.testNum,
notes: "Why is this confusing me?"
}
);Thank you