BookmarkSubscribeRSS Feed
swayto
Fluorite | Level 6

Data loan;
Input Account Amount Rate Months;
Datelines;
1092 22000 10.0  60
1731 114000 9.50 360
1289 10000 10.50  36

;

How do i format the rate to appear as 10,00%, 9.50%, 10.50%

1 REPLY 1
VDD
Ammonite | Level 13 VDD
Ammonite | Level 13
Data loan;
infile datalines dlm=' ';
Input Account Amount Rate Months;
rate=rate/100;
format rate percent10.2;
Datalines;
1092 22000 10.0  60
1731 114000 9.50 360
1289 10000 10.50  36
8974 21000 -2.45 12 ;

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 1 reply
  • 471 views
  • 2 likes
  • 2 in conversation