Hi @Anonymous,
Do you want to refresh your data source in a specific schedule?
Based on the needs that you mentioned, I think the Timer control could achieve your needs.
I have made a test on my side, please take a try with the following workaround:
Add a Timer control within your app, set the Duration property to following:
60000*10
Set the AutoStart property and Repeat property to following:
true
Set the OnTimerEnd property to following:
Refresh(YourTable1);
Refresh(YourTable2);
Refresh(YourTable3);
...
Refresh(YourTable10);
Note: The YourTable1, YourTable2, ...., YourtTable10 represents the data source within your app
Set the Visible property of the Timer control to following:
false
Best regards,