I have a gallery and text input on a screen.
On the gallery items I have:
If(
IsBlank(TextInput.Text),
SortByColumns('2nd Stage Reviews', "Created", Descending),
SortByColumns(
Filter('2nd Stage Reviews', StartsWith(field_3, TextInput.Text)),
"Created",
Descending
)
)
Ultimately I want it to show the latest 200 rows from the dataset plus filter by the gallery by the text that is entered into the text input, however the filter is not always working it works with some text that is entered and not others, is there a logical reason for this happening?