Hi,
I have an app with the following code, however if the dropdown is on "ALL" the text searchbox doesn't filter the gallery. Yet it works if the dropdown is on the other options?
Could someone help me modify the following code, i cant work it out
SortByColumns(
If(StatusDropdown.Selected.Value = "ALL",
'JSA',
Filter(
'JSA',
Status = StatusDropdown.Selected.Value,
StartsWith(
JSAID,
TextSearchBox1_1.Text
)
)
),
"Created",
If(
SortDescending1,
Descending,
Ascending
)
)