I have a search screen that is currently set to search collections based off an Excel spreadsheet. The spreadsheet has numerous columns. The search screen has both dropdowns and text input search fields. I would like the user to be able to search on whatever search input selections are made. For example, they might search on State and Manager or State only (dropdowns) -- this works.
Or test input a DOT #, (this works).
Or a DOT # (text input) and Status (dropdown) -- this DOES NOT work.
Nor does two text inputs.
My formula for OnSelect is:
ClearCollect(
colSelectedProject,
Search(
Filter(colAllProjects,
Prj_x0020_Ctgry = inputProjCategory.Selected.Title || inputProjCategory.Selected.Title = " *All",
State = inputState.Selected.Title || inputState.Selected.Title = " *All",
DIV = inputDivision.Selected.Title || inputDivision.Selected.Title = " *All",
Sub_x0020_Div = inputSubdivision.Selected.Title || inputSubdivision.Selected.Title = " *All",
Status = inputStatus.Selected.Result || inputStatus.Selected.Result = " *All"),
inputDOT.Text, "Dot_x0020_Num"
)
)