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-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

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
  • 365 views
  • 2 likes
  • 2 in conversation