Hi@VS325,
Based on the issue that you mentioned, do you want to patch a field value from SP list1 to another field in SP list2?
Could you please tell me that what the column type of these two fields, are they the same column type?
1). If you want to patch to an existing record, you should refer to the primary key within the SP list2.
Try the following formula:
Patch(SPList2,LookUp(SPList2,ID=1),{Title:DataCardValue1.Text})
Note: I assume that you want to specify the first record to patch to, and the Title in SPList2 is the aimed column.
DataCardValue1.Text represents the value of the control within the Edit Form.
2). If you just want to save as a new record, you could directly use the Defaults() in the Patch() function.
Patch(SPList2,Defaults(SPList2),{Title:DataCardValue1.Text})
Hope it could help you.
Regards,
Qi