I have an interface where there is a grid to display tasks, one of the columns is based on status (complete in progress and new) and I want to be able to filter the grid by having only In Progress and New being shown. So in other words, if the status is Completed, I would like the entire row to be removed from the grid. I thought I would have to add a new a!queryfilter but I'm not sure if that is correct or if I'm structuring it wrong.
Here is the basics of what I wanted to do. Is this the correct method? Or how should I change it so it can actually accomplish what I want
Discussion posts and replies are publicly visible
I am not sure I understand your question. Yes, you need to add another queryFilter. And to make it work, you need to wrap that existing logical expression into a new one that uses an AND operator which contains the new filter.