Hi @trishmalloy ,
As you said, there are two forms on the screen, form1 shows the client name selected from gallery2, and form2 is to create a workout, right?
What is the data source of gallery2, List of client?
Do you want to patch the client name to the work out record created by form2, right?
If my assumption is right, the formula needs to modify as below:
Patch('client workout data',<BaseRecord>,{'client name':{'@odata.type':"#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference",Id:<ID>, Value:<Value>}})Note:
<BaseRecord> is the record submitted by form2, you need to use lookup function to find out that record you just created.
You also need to modify <ID> and <Value> which are from the record you looked up. Since the client is selected from gallery2, they may be that <Id> is Gallery2.Selected.ID, <Value> is Gallery2.Selected.'Client Name'.
Best regards,
Sik