I need to load my powerapps gallery fast where the datasource SharePoint list contains hardly 500 items. Out of 500, i am hardly showing 100 items in gallery based on filter conditions.
If i scroll down, the gallery spinner runs and it takes a while for remaining items to load. Is there anyway i can improve my loading speed?
Gallery Items
If(
myfavselected,
Filter(
Items,
ID in Filter(
Favorites,
Title = User().Email
).CatalogID && Item_Status = "Ready for Display" && !IsBlank(AuctionEventID) && checkBoxVal
),
Filter(
Items,
(Len(searchText) = 0 || searchText in 'Item Name' || searchText in Description || searchText in 'Unit Price' || searchText in 'Item Category') && (IsBlank(ComboBox6.SelectedItems) || ('Item Category' in Concat(
ComboBox6.SelectedItems,
Value
))) && (IsBlank(ComboBox3.SelectedItems) || ("Under $50" in Concat(
ComboBox3.SelectedItems,
Value
) && Start_Value >= 1 && Start_Value < 50) Or ("$50 - $100" in Concat(
ComboBox3.SelectedItems,
Value
) && Start_Value >= 50 && Start_Value < 100) Or ("$100 - $200" in Concat(
ComboBox3.SelectedItems,
Value
) && Start_Value >= 100 && Start_Value < 200) Or ("Above $200" in Concat(
ComboBox3.SelectedItems,
Value
) && Start_Value >= 200)) && Item_Status = "Ready for Display" && !IsBlank(AuctionEventID) && checkBoxVal && LookUp(
Auction,
Status = true,
Start_Date
) <= Now()&& LookUp(
Auction,
Status = true,
End_Date
) >= Now()
)
)