hi.
I have two sharepoints tables A being parent and B being child.
I created multiple forms against sharepoint A field and the submit button does a patch like this ->
Patch(A, Defaults(A), RequestForm1.Updates,RequestForm2.Updates, RequestForm3.Updates, RequestForm4.Updates). This works like a charm. However on the success property it does seem to patch the MasterID which is the lookup i set on the child sharepoint.
THe idea is to related both the sharepoint with using list A's ID with B's master ID. OnSuccess property is this -> Patch(B, Defaults(B), {MasterID:RequestForm1.LastSubmit.ID, EmployeeName:DataCardValue12.Text}). My end product would be to pull out the related records using gallery later on and edit update functions.