Hello,
While this topic was addressed on the internet, I am not able to have Search formula work along side plane SharePoint text fields(that are working in search by themselves) in galley. The name of the choice column in SharePoint I am trying to add is called "Status Task" (internal SP name "StatusTask").
Below is my formula(there is a "Sort" wrapper that can be ignored:
SortByColumns(
If(
!IsBlank(Search_tb.Text),
Search(
ActiveRequests,
Search_tb.Text,
"Title","Brand"
),
ActiveRequests
),
"ID",
If(
Sort_ddl.SelectedText.Value = "Ascending",
Ascending,
Descending
)
)
Thank you.