BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
sfo
Quartz | Level 8 sfo
Quartz | Level 8

I am using PRCO MEANS in SAS 9.2 on 10 different variable so I have defined a macro variable like %let var = BWT GENDER RACE etc ...

 

my following code runs but the value of the variable are coming in informat 12. (example: 69.7597143)

 

proc means N MEAN STD MEDIAN Q1 Q3 MIN MAX data=perflags;
class Group;
var &var ;
output out = STAT (drop = _TYPE_ _FREQ_) ;
run;

 

Is there a way I can format all the variables to say 8.3 by using my macro variable and not specifying all the variables ? For example something like format &var 8.3?

1 ACCEPTED SOLUTION

Accepted Solutions
PeterClemmensen
Tourmaline | Level 20

You can use MAXDEC=3 to control the number of decimals displayed. 

View solution in original post

1 REPLY 1
PeterClemmensen
Tourmaline | Level 20

You can use MAXDEC=3 to control the number of decimals displayed. 

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 1015 views
  • 0 likes
  • 2 in conversation