Hi,
I have an App built from a SP list. I am trying to filter on open actions and where the user is included in the responsible column field.
I have set the OnStart condition to:
ClearCollect(collection, 'Delivery Tasks Tracker');
Set(varUser, Office365Users.MyProfile().DisplayName)
I have Set the Items condition to:
SortByColumns(Filter([@'Delivery Tasks Tracker'], Progress.Value = "Not Started"||Progress.Value <> "In Progress" && Responsible.DisplayName = varUser),"Title",If(SortDescending1, Descending, Ascending))
The progress filter worked fine until I added the extra filter on the responsible person which also doesn't seem to do anything.
Am I missing something obvious?