easy peasy

find:
change to
AND p.USER_ID NOT IN (1,xx,yy)
where xx and yy are member numbers you don't want in the calcs..
so assume there are 3 members you don't want included (1 is always included) -- ids 10, 69, 443
the statement would read
AND p.USER_ID NOT IN(1,10,69,443)
*poof* done
