I have an app for an offline solution. In there is a button which download "OnSelect" certain data from a data table (Excel) with:
ClearCollect(Stammdaten;Search(Tabelle11;Suchfeld.Text;"ProjektNr"))
This works perfectly. Now after making some changes in the collection, it should patch/override certain data in the datatable with the collection data.
So far I use:
Patch(Tabelle11;Stammdaten)
Problem is: If I delete an item in the collection, it should also be deleted in the datatable. So what I basicly want, is to delete certain data in the datatable and replace the deleted dataset through the collection data.
Looking forward to hearing from you.
Sincerly Vinc92