Thanks Razzak and Javier, I used the NOT IN approach. Gary
________________________________ From: A. Razzak Memon <[email protected]> To: RBASE-L Mailing List <[email protected]> Sent: Thu, September 29, 2011 11:54:51 AM Subject: [RBASE-L] - Re: Print Command At 12:33 PM 9/29/2011, Gary Wendike wrote: >When I try to use the following code.... >PRINT ft_item_store WHERE wmweek = 201135 + >AND (ft_store <> 'o' OR ft_store <> 'x') + >OPTION SCREEN > >This brings back a report and includes all of the 'O' FT which >I am trying to eliminate. FT 'O' is the most prevalent and >correct FT used in the system. I am trying to review the >exceptions. > >Can anyone see a problem with the code? Gary, Here's how: PRINT ft_item_store WHERE wmweek = 201135 + AND ft_store NOT IN ('o','x') + OPTION SCREEN That's all there is to it! Ver Best R:egards, Razzak.

