Hi,
I want to insert record in existing column which has been updated in Powerapps form control. I'm using this code , rather than replacing data into existing column , it is creating a new record in database.
Please help how to modify this code
Code:
Patch(t_NutritionValue, Defaults(t_NutritionValue),
{
BatchId: Gallery4.Selected.BatchId,
CreatedBy:User().Email,
CreatedOn: Now(),
FileName:Gallery4.Selected.FileName,
FilePath:Gallery4.Selected.FilePath,
LinkId: Gallery4.Selected.LinkId,
Status: Gallery4.Selected.Status
},
Form1.Updates,Form2.Updates,Form3.Updates,Form4.Updates
)