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

Hi, I have percentage data but in character format. I'm using this code to transform it:

data monic.fondorfdol;

set work.fondorfdol;

tir1=input(tir,percent5.5);

run;

But I don't get the exact number, for example, these are original values:

5.8077%

1.7514%

After the transformation, I get:

5.807

1.751

It's not necessary the percetange symbol, but I want to have all decimal numbers, is it possible?

Thanks!

1 ACCEPTED SOLUTION

Accepted Solutions
art297
Opal | Level 21

data monic.fondorfdol;

  set work.fondorfdol;

  tir1=input(tir,percent.);

run;

View solution in original post

3 REPLIES 3
art297
Opal | Level 21

data monic.fondorfdol;

  set work.fondorfdol;

  tir1=input(tir,percent.);

run;

fri0
Quartz | Level 8

Thank you very much, I always thought that I have to specify the width of the value.

art297
Opal | Level 21

The number after the period in an informat isn't the number of decimal places. According to the documentation: the number specifies an optional decimal scaling factor in the numeric informats. SAS divides the input data by 10 to the power of d.

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 3 replies
  • 1380 views
  • 1 like
  • 2 in conversation