Proc format;
Value Newgrp
low-175='<175'
175-<200='175-200'
200-High= '>200';
run;
has an issue with 175 being in two groups (and not a multilabel format). From your label text I suspect that you might actually want:
Proc format;
Value Newgrp
low -< 175='<175'
175 -< 200='175-200'
200 - High= '>200';
run;
... View more