select where conditions not met
I have a script running everyday to determine what parts have failed. We had a day where none of the parts failed and since my select where condition was not ("Fail") it grabbed all the passing parts and output them to the next table. How do I write it so that if no parts fail, the next tables should be blank?
Example:
Data Table ("Parts")<< select where (:PassOrFail == "Fail");
Data Table ("Pa
...