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!
data monic.fondorfdol;
set work.fondorfdol;
tir1=input(tir,percent.);
run;
data monic.fondorfdol;
set work.fondorfdol;
tir1=input(tir,percent.);
run;
Thank you very much, I always thought that I have to specify the width of the value.
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.
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.
Ready to level-up your skills? Choose your own adventure.