Could anyone help me with the syntax to do a complex sort+multiple filter expression?
I have a simple SharePoint list with 3 pertinent fields: 1) Employee (Person); 2) Date of Week Worked (Choice & actual name is 'Monday_x0020_of_x0020_Week_x0020'); and, 3) Title (Single Line of Text).
I need to: 1) filter by the logged in user using 'Employee'; filter by the 'Title' field (if entered), and sort by the 'Date of Week Worked' ascending.
My feeble--incomplete--attempt looks like this so far.
SortByColumns(Filter([AddColumns([@'Time Tracker'],PersonsName,Employee.DisplayName), StartsWith(Title, TextSearchBox1.Text)), "PersonsName", If(SortDescending1, Descending, Ascending))
