@kevtun1982
Please consider changing your Formula to the following:
Sort(
Filter(NewNCR,
(StatusDropdown.SelectedText.Value="All" || Status.Value = StatusDropdown.SelectedText.Value) &&
(CategoryDropdown.SelectedText.Value="All" || Category.Value = CategoryDropdown.SelectedText.Value)
),
ID,
Descending
)
Also, you should consider getting rid of the .SelectedText property on your Dropdowns in the formula as the property has been deprecated and should not be used going forward.
Example, It should be : StatusDropdown.Selected.someColumn
The "someColumn" name will be determined by the Items property of your dropdowns.
I hope this is helpful for you.