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.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 4 replies
  • 1084 views
  • 0 likes
  • 5 in conversation