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!

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

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
  • 4943 views
  • 1 like
  • 2 in conversation