QuestionQ398
Create and configure Power AppsYou are developing a canvas app that realtors use to identify neighbors of properties that are for sale.
The OnStart property contains the following code:
ClearCollect(collectNeighborList, Filter(NeighborList, Status = `Active"));
ClearCollect(collectRealtorList,CompanyList);
ClearCollect(collectRegions, RegionList)
The app is performing more slowly than expected.
You need to resolve the issue.
What should you do?
- A Replace all instances of the ClearCollect method with the connect method.
- B Replace the existing code segment with the following code segment Concurrent (ClearCollect(collectNeighborList, Filter(NeighborList, Status = ג€Activeג€)), ClearCollect(collectRealtorList,CompanyList),ClearCollect(collectRegions, RegionList))
- C Replace the existing code segment with the following code segment: ClearCollect(collectNeighborList, Filter(NeighborList, Status = ג€Activeג€)); Concurrent(ClearCollect(collectRealtorList,CompanyList)); Concurrent(ClearCollect(collectRegions, RegionList))
Community Discussion