Hi
I'm facing small issue. I have vertical gallery with editable controls so it is looks like excel each row has save button.
save button has this code "I'm testing only one column" :
Patch( Table1,ThisItem,{Column1:TextInput8_17.Text});
Notify("Data updated successfully!", NotificationType.Success);
Refresh(Table1);
it is already update in excel and in the gallery " for second" and it returned back to the old data but in excel it has the new data. and it require me to refresh the data manually. so I think I need to add delay before refreshing the data, but I don't know how much.
note that I have 14 columns that the user can edit so I will add them to the code later after solving this issue, but I'm not sure if the delay will be extended or not.