Hi,
I have a Work Queue setup within my app, which has this filter on it:
Filter('Initial Incident Notification','First Level Reviewer'.DisplayName =varUser.FullName)
This basically shows records from the SharePoint list "Initial Incident Notification" assigned to the respective "First Level Reviewer". This works well.
I want when a reviewer updates their record, there is a status field called Investigation Status which is currently set to Open. If the user changes this to "Investigation Complete", I would like when they go back to their work queue, this item falls off of it. I'm not sure how to add the And Investigation Status = "Investigation Complete" to the filter above. There is also one other field which should not be blank. If the user updates the "Incident type", this should also be added to the filter. So its basically to add Incident type is not blank and Investigation Status is Investigation Complete. Appreciate any guidance as I keep getting errors when trying to add these.
Solved! Go to Solution.
Consider the following for your scenario:
Filter('Initial Incident Notification',
'First Level Reviewer'.DisplayName =varUser.FullName &&
'Investigation Status' = "Open"
)
I hope this is helpful for you.
Consider the following for your scenario:
Filter('Initial Incident Notification',
'First Level Reviewer'.DisplayName =varUser.FullName &&
'Investigation Status' = "Open"
)
I hope this is helpful for you.
Thanks @RandyHayes - this helped. I just had to include .value after the Investigation Status. Works well now. Appreciate it.