Hello All,
I am trying to filter out my data in a specific way.
Right now, my test code below runs a gallery that allows a person to search for their name.
SortByColumns(
Filter(
[@'System Manager Results Test List'],
StartsWith(
Title,
TextSearchBox1.Text
)
),
"Title",
If(
SortDescending1,
Descending,
Ascending
)
)
I want to add an additional filter such that I can also filter out people who do not meet a specific requirement in another column of the source data. The code or idea would be something like Filter(System Manager List, "Requirement Met", "Training Status"). There would also be room for an additional filter if needed with the same logic. However, I cannot find a way to add it without messing up the code completely. Any help?

Report
All responses (
Answers (