ConsoleGuiTools icon indicating copy to clipboard operation
ConsoleGuiTools copied to clipboard

Multiple filters are only '-or'. Would be nice to have '-and' as well

Open danamatt opened this issue 6 years ago • 0 comments
trafficstars

For example, if i do

PS | out-gridview

Then in the filters so that SI: doesn't equal 2 doesn't equal 0

Then it gives me results for both 2 and 0 becuase it is a -or clause: Where-Object { $_.SI -NE '2' -or $_.SI -NE '0' }

Would be nice to be able to '-and' clause them: Where-Object { $_.SI -NE '2' -and $_.SI -NE '0' }

[enhancement] [feature request]

danamatt avatar Aug 15 '19 15:08 danamatt