Hi to all, can someone tell if it's possible in powerapps do schedule job for refreshing database every 10 minutes or something else. I have more than 10 table and i need fresh data.
Solved! Go to Solution.
Have you looked at the Timer control? That would be your best option for doing timed anything - in this case a refresh on a datasource.
Hi @dgrubesi,
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,
Have you looked at the Timer control? That would be your best option for doing timed anything - in this case a refresh on a datasource.
Hi @dgrubesi,
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,