Hi All,
I'm trying to work out how I can search multiple columns in my SP List.
I've tried all the usual techniques, done some research but failing to add another column.
Currently my code is:
With(
{WMST: 'NC MST Tracker'}, Sort(
Filter(
WMST,
Or(IsBlank(TextInput1.Text),
TextInput1.Text in 'Employee Name',
StartsWith(
'Employee Name',
TextInput1.Text
)) && Switch(
Gallery1_1.Selected.Value,
"Mentor",
Mentor,
"AET",
'AET Instructor',
"MST",
'MST Assessor',
"All",
All,
true
&& Grade.Value = Gallery1_1.Selected.Value)
),'Employee Name',If(SortDescending1, Descending,Ascending))
)
I have a column called 'Cohort' - How would I add this?