SAS newbie - trying to complete a practice exercise. I'm probably going to face palm myself once someone points out what I'm doing wrong, but for now, I can't tell what the issue is.
I have a datset with 3 variables: ID $ avgNumDonations DonationAmt.

I'm asked to create a subset (i'm doing it in my proc print statement) that contains no records with avgDonation below 20 and DonationAmt under a million.(I believe this is a trick question as there are no cases in the original data set that meet both criteria)
I wrote my where clause as follows: where DonationAmt >= 1000000 and avgNumDonations >= 20
However, it seems to be acting as an OR statement instead of a AND statement, because my subset is eliminating ID's 45 and 78.
Can someone tell me what I'm missing? As I mentioned, no cases meet the criteria so I expected to have the same cases in my "subset".