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

I want to change a character variable to a numeric variable.  The column name is VALUE (length=8, type=char, format=$8., informat=$8.) and the character values in the VALUE column look like this:

 

VALUE

-2,88

2,68

-6,22

-4,57

5,42

and so on

 

I know that I should use the input function and I want to change the commas to decimals points.  Data is coming from Europe so it's using the comma instead of a decimal point.

  

num_value=input(value,????);

 

Any help is appreciated.

1 ACCEPTED SOLUTION

Accepted Solutions
PeterClemmensen
Tourmaline | Level 20

Something like

 

data have;
input VALUE $;
datalines;
-2,88 
2,68  
-6,22 
-4,57 
5,42  
;

data want;
   set have;
   numval = input(value, commax8.2);
run;

View solution in original post

2 REPLIES 2
PeterClemmensen
Tourmaline | Level 20

Something like

 

data have;
input VALUE $;
datalines;
-2,88 
2,68  
-6,22 
-4,57 
5,42  
;

data want;
   set have;
   numval = input(value, commax8.2);
run;
Astounding
PROC Star

Depending on what your data might contain, a slight change could be in order.  Compare these results:

data have;
input VALUE $;
datalines;
-28 
2,68  
-6,22 
-4,57 
5  
;

data want;
   set have;
   numval1 = input(value, commax8.2);
   numval2 = input(value, commax8.);
run;

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

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
  • 822 views
  • 1 like
  • 3 in conversation