Currently I have a Gallery with a search bar that when blank sorts the table into Priority order Ascending. I would also like to add a filter to this that only shows items with a status of in progress. The status is a text column FYI.

If(
!IsBlank(TextInput2_4.Text),
(Search(
'WTRF Database',
TextInput2_4.Text,
"WTRF_x0020_Number_x0020_Text",
"ToolNumberText",
"Customer_x0020_Text"
)),
Sort(
'WTRF Database',
'Priority Order'.Value,
SortOrder.Ascending
)
)
Any thoughts appreciated.
Kind Regards