You're right @PhilC. I've turned to proc sql myself in similar situations, which works well if you have a few variables. Proc SQL requires a format statement for each variable, whereas if the format statement worked in proc means, you could do something like this, for example: format var1-varN comma12.; So the benefit of having a format statement in proc means would be if you had multiple variables that you wanted to apply the same format to, you could save some typing.
... View more