I am faced with a seemingly simple problem but on which I am stuck, I want to increment by 1 the value of a specific column of the record linked to the form when it is submitted with "OnSuccess". So far I have managed to accomplish this task using the code :
UpdateIf(OffreGeneree;
ID = ThisRecord.ID;
{Modifications: Value(Label19.Text)+1})
However, the increment result affects all records in my data source, whereas I want it to only apply to the record associated with the current form. Any idea how to solve this problem?
Thanks in advance