xcen > i proc format; value $clfmt (multilabel) 'a','b','c','d','e'='Normal' other='other' all='Total' ; t hi, I would like to build a multilabel format with one category that contains all the possible values. In other terms I'm trying to code something like this proc format; value $clfmt (multilabel) 'a','b','c','d','e'='Normal' other='other' all='Total' ; however this seems not to work properly data one; case='a'; output; case='b'; output; case='c'; output; case='d'; output; case='e'; output; case='z'; output; case='x'; output; case='a'; output; run; data two; set one; count=1; run; proc format; value $clfmt (multilabel) 'a','b','c','d','e'='Normal' other='other' all='Total' ; proc tabulate data=two; class case /mlf; var count; tables case,count*sum=''; format case $clfmt.; run; thank you in advance for any suggestions
... View more