So I am using a "Concurrent(ClearCollect" Formula in the App.OnStart and Gallery2 loads within a sec, Gallery1 takes almost 10 minutes to load? Please see code for the Gallery1.Items. Am I doing something wrong here? It's the same code in Gallery2...
With(
{
galData1: Filter(
colFuelLogEquipList,
IsBlank(ComboBox2.SelectedItems) || IsEmpty(ComboBox2.SelectedItems) || EquipCatChoices.Value in ComboBox2.SelectedItems.Value
)
},
If(
Not(IsBlank(Owned_SearchTxtBox.Text)),
Search(
galData1,
Owned_SearchTxtBox.Text,
"Title",
"SerialNoVIN"
),
galData1
)
)