BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Q1983
Lapis Lazuli | Level 10

data test(keep=pct);

set test1;

run;

sample output

pct

1000

5000

150

By default the pct comes out as above.  I need for the results to display as follows:

100.00

50.00

1.50

 

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

Divide by 100 and format as F6.2.

Pct= pct/100;

Format pct F6.2;

 

Or use a custom picture format that involves MULT.

View solution in original post

2 REPLIES 2
ballardw
Super User

Divide by 100 and format as F6.2.

Pct= pct/100;

Format pct F6.2;

 

Or use a custom picture format that involves MULT.

Q1983
Lapis Lazuli | Level 10

thanks it worked

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 2027 views
  • 1 like
  • 2 in conversation