SAS Programming

DATA Step, Macro, Functions and more
BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
jenim514
Pyrite | Level 9

Hi all!

 

If I write this to calculate a percentage in a data step,  where do I write the maxdec=2  so that percent_miss is only 2 decimals?

 

data gaq_4 (drop=_TYPE_ _FREQ_);
set gaq_1 (rename=(_FREQ_=Study_Population));
Percent_Miss=nmiss/Study_Population;

run;

 

Thank you!!

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

Are you asking how to round your results to 2 decimal places?

Use the ROUND() function.

Percent_Miss=round(nmiss/Study_Population, 0.01);

View solution in original post

2 REPLIES 2
Reeza
Super User

MAXDEC is only an option in PROC MEANS. 

 

You use a FORMAT or ROUND in a data step or SQL to limit the decimal places.

Tom
Super User Tom
Super User

Are you asking how to round your results to 2 decimal places?

Use the ROUND() function.

Percent_Miss=round(nmiss/Study_Population, 0.01);

sas-innovate-white.png

Special offer for SAS Communities members

Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.

 

View the full agenda.

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