I'd like to use Refresh() with more than one source, but have tried a few different ways without success. Is it possible for Refresh() to do this?
I've got this:
Refresh('ESN Ticket Tracker')
I was hoping this would work but it does not:
Refresh('ESN Ticket Tracker','Networking Device List Master')
Solved! Go to Solution.
Use Concurrent () function to refresh simultaneously two datasources:
Concurrent(
Refresh('ESN Ticket Tracker'),
Refresh('Networking Device List Master')
)
Hope it helps !
If you want to string multiple data source refreshes then you would need to do it like this:
Refresh( DataSource1 ); Refresh( DataSource2 ); Refresh( DataSource3 )
Use Concurrent () function to refresh simultaneously two datasources:
Concurrent(
Refresh('ESN Ticket Tracker'),
Refresh('Networking Device List Master')
)
Hope it helps !
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
User | Count |
---|---|
189 | |
65 | |
46 | |
35 | |
25 |
User | Count |
---|---|
243 | |
106 | |
89 | |
85 | |
64 |