From: Crystal Vierhout on
Morning,

I'm at a blank how to the following. Ironically, I believe, I've done
this before but just blanking. Can someone help?

I have grades KK – 05 there should be a way to pass the existing format
with a character format and add another.


Have:
Proc format;
Value $grade (multilabel)
'KK' = 'KK'
'01' = '01'
'02' = '02'
'03 ' = '03'
'04' = '04'
'05' = '05'
'KK','01', '02', '03', '04', '05' = “Elem”;
quit;

Should be something like (realize this doesn't work, I'm making this up):

Proc format;
Value $grade (multilabel)
_same_ = _same_
'KK','01', '02', '03', '04', '05' = “Elem”;
quit;

Sorry for such a simple question but I'm just not finding this in a
example or documentations very quickly.

Thanks

Crystal