I have a list named Office Documents and within that list I have a Status column which is Single of text, Position column which is choice column and office which is also a choice column .
In the gallery I have displayed everything that is created by current logged in user only ( 100s of them ), but I want to filter that by one dropdown selected value (offices) and a search inputttext box , this inputtext text should only search position and status column.
SortByColumns(
If(
Dropdown2.Selected.Value = "All Offices" , Filter('Office Documents', 'Created By'.DisplayName = varCurrentUser ),
Dropdown2.Selected.Value <> "All Offices", Filter('Office Documents', Office.Value = Dropdown2.Selected.Value)
Filter('Office Documents', TextInput4.Text in 'Position Title'.Value || TextInput4.Text in Status)
),
varSortColumn,
varSortDirection
)This works for the dropdown, but does not work for the search Textinput box.
Please help.

Report
All responses (
Answers (