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!
%let col8 = %sysfunc(putn(%sysevalf(&col5 + &col6 + &col7), 5.3));
View solution in original post
Thank you so much for quick reply!
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Latest Updates
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.