BookmarkSubscribeRSS Feed
JIM1949
Calcite | Level 5

What are some to convert numeric values stored in a field that is defined as character to a field defined as numeric.

4 REPLIES 4
Tom
Super User Tom
Super User

INPUT() function. Choose an appropriate informat.

data want ;

set have;

numvar = input(charvar,10.);

run;

PaigeMiller
Diamond | Level 26

You can't convert the field to numeric.

You can create a new numeric variable that has the same value as the character variable (except that it is translate to a number)

numericvar=charactervar+0;

--
Paige Miller
ballardw
Super User

Not really the best but you'll find it in some folks code is to do arithmetic with it.

numvar = 0 + charactervariable;

This will generate warning messages about conversion of strings to numeric.

Astounding
PROC Star

Very similar ...

If you have already defined a new variable as numeric, just copy:

length numvar 8;

numvar = charactervariable;

If the character variable takes on unusual values that can't be converted to numeric, you will receive a warning.

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 4 replies
  • 549 views
  • 0 likes
  • 5 in conversation