I am having an issue with a certain piece of my code: data RESULTS; set TESTDATA; if RULE NE 'ABC' AND STATUS NE 1; run; When I run this, if the RULE is NE 'ABC' and the STATUS is EQ 2, the data does not show up because it only looks at the 1st statement. Please help!
... View more