Hello! Can anyone explain to me how to create a where statement with three conditions? I am running an ANOVA test and I want to only include responses where the indic variable equals 0, where the maxiwhite variable equals 0, and where the maxdidsa equals 0. This is the code I have, and there were no problems in the log, but I want to make sure set it up correctly and don't need to put the three where statements together before the ANOVA. data gpa; set import; where indic = 1; where also maxiwhite = 0; run; proc anova; class mipell; model mfinalgpa = mipell; means mipell / tukey; where maxdidsa = 1; run; Thank you!!
... View more