BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
nbwest76
Fluorite | Level 6

I'm having trouble finding out which format will get the results I am looking for.

 

I'd like to convert a number like this 0.032258 to 3.2

1 ACCEPTED SOLUTION

Accepted Solutions
ghosh
Barite | Level 11

Create a format to simulate percent if you don't want the % sign

percent.png
proc format; picture perc (round) low - high ='009.9' (mult=1000); run; data x; input a; cards; 0.032258 0.12345 1.2345 ; proc print; format a perc.; run;

View solution in original post

4 REPLIES 4
novinosrin
Tourmaline | Level 20

Hi @nbwest76  are you asking percent format?

0.032258 is 3.2 %

 

Reeza
Super User
Multiply by 100 and format? Or apply a percentage format to your variable?

want = x * 100;
format want 8.1;
format x percent12.1;
ChrisNZ
Tourmaline | Level 20

You can also use the multiplier option in a picture format.

ghosh
Barite | Level 11

Create a format to simulate percent if you don't want the % sign

percent.png
proc format; picture perc (round) low - high ='009.9' (mult=1000); run; data x; input a; cards; 0.032258 0.12345 1.2345 ; proc print; format a perc.; run;

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

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
  • 4 replies
  • 1086 views
  • 1 like
  • 5 in conversation