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 ;

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