Hello folks,
I am struggling to patch gallery items which is filtered on certain ID.
Use Case: there are one form (above in pic) and one gallery whose DBs are different. i just want to update the changes in both area. i can make it for form but cannot patch updates for certain ID for Gallery.
The Code;
Filter(colDeneme2,refID=Value(DataCardValue27.Text));
ForAll(
colDeneme2,
Patch(
DenemeFormDetay,
{
Proses: ddproses2.Selected,
'İş Akışı': txtIsakıs2.Text,
Sorumlu: ddSorumlu2.Selected,
Termin: ddTermin2.SelectedDate
}
)
);
Patch(
DenemeFormAna,
{ID: Value(DataCardValue27.Text)},
Form3.Updates
);
UpdateItem.Run(DataCardValue27.Text);

In DB side, the item which i want to patch, is being recorded in separate row multiple times (Only the last row) not not getting "refID" value.

how can make this happen?