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

Hi community,

 

I want to import a tab delimited file into sas. there are a variable containing percentage values, like 6.9873% or -12.0945%. SAS recognizes this variable as character when I import the file. I need this variable to be numeric, so I did the following:

 

newvar=input(oldvar,percent2.6);

 

However when I look at the data, the code doesn't convert the format consistently, for example:

 

oldvar                                 newvar

12.6545%                          12.6545

9.5451%                            0.095451

 

I appreciate any and all suggestions.

1 ACCEPTED SOLUTION

Accepted Solutions
PGStats
Opal | Level 21

@ballardw I think OP had a wider character variable that put the percent sign outside of the informat reach.

PG

View solution in original post

5 REPLIES 5
PGStats
Opal | Level 21

Use newvar=input(oldvar, percent20.);

PG
ballardw
Super User

@DavyJones wrote:

Hi community,

 

I want to import a tab delimited file into sas. there are a variable containing percentage values, like 6.9873% or -12.0945%. SAS recognizes this variable as character when I import the file. I need this variable to be numeric, so I did the following:

 

newvar=input(oldvar,percent2.6);

 

However when I look at the data, the code doesn't convert the format consistently, for example:

 

oldvar                                 newvar

12.6545%                          12.6545

9.5451%                            0.095451

 

I appreciate any and all suggestions.


A brief discussion why you get apparently inconsistent results. When an informat is used with decimals as you have then the first digits(preceding the decimal are the overall length of the expected value and with percent you add 2 to account for potenial leading negative sign and the trailing percent sign. Then the digits after the decimal indicate the number digits that should follow the decimal in the input data.

 

I am not sure that you posted the actual code you were running as I get notably different results.

data example;
   x='9.5451%';
   y='12.6545%';
   numx = input(x,percent2.6);
   put numx= best16. ;
   numx2 = input (x,percent9.6);
   put numx2= best16.;
   numy = input(y,percent2.6);
   put numy= best16.;
   numy2 = input (y,percent9.6);
   put numy2= best16.;
run;
PGStats
Opal | Level 21

@ballardw I think OP had a wider character variable that put the percent sign outside of the informat reach.

PG
ballardw
Super User

@PGStats wrote:

@ballardw I think OP had a wider character variable that put the percent sign outside of the informat reach.


I agree that OP was missing something. I wasn't going to guess too much away from what was shown though and use of any format with 2.6 needed some comment.

DavyJones
Obsidian | Level 7

Thanks for your comments. Yes, you are right. The source of the problem was not converting the percent numbers from character to numeric, but it was importing the data into SAS. Apparantly, as I didn't determine the length of the variable properly, the percentage sign has been removed for some values while kept for the others.

 

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 5 replies
  • 5350 views
  • 5 likes
  • 3 in conversation