emccormick
MIS
Hi
I have a table structured like this:
Item Status
-----------------
SN1 READY
SN1 INPROCESS
SN1 FINISHED
SN2 READY
SN3 INPROCESS
SN4 INPROCESS
SN4 FINISHED
I need to be able to isolate the Items which haven't been FINISHED. In other words, if the Item has a status of FINISHED anywhere in the table, don't return the Item at all.
In the above example, the correct result would be SN2, and SN3.
Thx!
I have a table structured like this:
Item Status
-----------------
SN1 READY
SN1 INPROCESS
SN1 FINISHED
SN2 READY
SN3 INPROCESS
SN4 INPROCESS
SN4 FINISHED
I need to be able to isolate the Items which haven't been FINISHED. In other words, if the Item has a status of FINISHED anywhere in the table, don't return the Item at all.
In the above example, the correct result would be SN2, and SN3.
Thx!