Hi @R45,
Here is an expression that displays only the first 500 items when no search is performed and filters the table when a value is added to the search.
If(
ComboBox.SearchText = "",
FirstN(
Distinct(
listName,
columnName
),
500
),
Distinct(
Filter(
listName,
columnName = ComboBox.SearchText
),
columnName
)
)
If you found my answer helpful, please consider giving it a thumbs-up or a like. Your feedback is greatly appreciated!
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.