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.

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

Register now

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
  • 1211 views
  • 0 likes
  • 5 in conversation