BookmarkSubscribeRSS Feed
deleted_user
Not applicable
How can I get my output to have consistent decimals? I've first rounded to the nearest hundredth, which gives me numbers that are whole (89) and also numbers that are to the nearest hundredth (67.92). How do I get the whole numbers to read to the nearest hundredth, i.e., how do I get 89 to read 89.00?

I tried this but nothing happened:

proc print data=ka.sorted;
format percent_p w.d;
run;

Thanks!
2 REPLIES 2
deleted_user
Not applicable
try
[pre]
format percent_p 5.2;
[/pre]
Also, it is unnecessary to round the number first. SAS will do it for you when it writes the number in the format.
deleted_user
Not applicable
Thanks - it worked!

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 2 replies
  • 1849 views
  • 0 likes
  • 1 in conversation