If you only have two possible values then why not just create a binary variable. That is easier to create
data medrec3;
set medrec2;
by medrec;
if first.Medrec then growth= (results = 'Growth');
retain growth;
run;
and easier to work with.
... View more