Hi @wonka1234 ,
Can you confirm [@'Data Source'] refers to your SP list?
I don't see anything obviously off in your formula, except for the use of the deprecated SelectedText property. Please use the Selected property instead and try again:
SortByColumns(
Filter(
[@'Data Source'],
If(
Dropdown3.Selected.Value = "Filter for Requests",
Status = "New Request" Or Status = "Assessment" Or Status = "Complete",
Status = Dropdown3.Selected.Value
)
And
StartsWith(
Control_two.Value,
'search box'.Text
)
),
"Title",
If(
SortDescending1,
SortOrder.Descending,
SortOrder.Ascending
)
)