Hello,
I recently found that PowerApps only pulls through a maximum of 2000 records from a Microsoft / Sharepoint list. I am planning to have an asset manager that will exceed the maximum amount.
Is there any way that this can be exceeded? I want to be able to search my app for any asset that I have in my list if it is possible. My current items property on the gallery looks like this
With({SourceItem:'Asset Manager'},
Sort(
If(
IsBlank(TextSearchBox1.Text),
SourceItem,
Search(
SourceItem,
TextSearchBox1.Text,
"Location",
"Title"
)
),
"Title"
)
)
It is currently set so that I can search for either the asset tag (Title) or the location of a number of assets.
I'm a bit clueless with formulas so I have no idea what I am doing or what direction to go in, so any help would be appreciated! Thanks