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

Hi all,

 

below is my code and values.

 

COde:

%let col8=%sysevalf(&col5+&col6+&col7);

%put &col5. &col6. &col7. &col8.;

 

 

log:

%put &col5. &col6. &col7. &col8.;
1.870 1.875 1.895 5.64

 

But I want 3 decimal places for col8, how can i get that?

 

Thanks in advance! 

1 ACCEPTED SOLUTION

Accepted Solutions
Astounding
PROC Star

%let col8 = %sysfunc(putn(%sysevalf(&col5 + &col6 + &col7), 5.3));

View solution in original post

2 REPLIES 2
Astounding
PROC Star

%let col8 = %sysfunc(putn(%sysevalf(&col5 + &col6 + &col7), 5.3));

chinna0369
Pyrite | Level 9

Thank you so much for quick reply!

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 2 replies
  • 4168 views
  • 1 like
  • 2 in conversation