Hello,
Im struggling to keep in sync my local collection and my Datasource after updating a record.
Here's my dilema, I have a simple gallery where on click of a button, it will collect from my data source and then display the data in a gallery.
ClearCollect(Local_Collection,
Filter(DataSource,
Parent_ID = ThisItem.ID)
)
)
User would then modify record or records, and on save it will send a patch to the Datasource. It would then send them back to the main menu. So far all this is working up to this point, no problem.
The issue I came across is that users might need to update the same batch of records again a few seconds later. So if they try to access the record again, the old data shows up but if you go back again 30 seconds later, It finally grabs the updated record.
There seems to be a delay between saving the data and being able to grab the updated record from a Sharepoint list. Has anyone come across this and know how to get around this?