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

So i am currently trying to recode a data set so that some variables that are currently character, are numeric.  Now keep in mind, even though they are character variables, they still have the values 1,2,3, etc... (no letters).

I am trying to change the formatting so that these are numeric variables and not character variables.

Can anybody see what I'm doing wrong?  I've been looking at it for a while now and can't figure it out.

CODING:

PROC FREQ DATA=WORK.MASTER_FILE5;

  TABLES type ownership ownership1;

  TITLE1 TYPE OWNERSHIP ownership1;

RUN;

*HERE I GET A PERFECTLY REASONABLE LIST OF DATA) BUT WHEN I MAKE MY NEW VARIABLES....*;

DATA work.master_file5_TESTING;

  set work.master_file5;

  newownership = input(ownership,8.);

  newownership1 = input(ownership1,8.);

  newtype = input(type, 8.);

RUN;

PROC FREQ DATA=work.master_file5_TESTING;

  TABLES newownership newownership1 newtype;

RUN;

*THIS PROC FREQ ANALYSIS REPORTS THAT ALL VALUES ARE MISSING*;

1 ACCEPTED SOLUTION

Accepted Solutions
PGStats
Opal | Level 21

Try

DATA work.master_file5_TESTING;

  set work.master_file5;

  newownership = input(left(ownership),8.);

  newownership1 = input(left(ownership1),8.);

  newtype = input(left(type), 8.);

RUN;

PG

PG

View solution in original post

1 REPLY 1
PGStats
Opal | Level 21

Try

DATA work.master_file5_TESTING;

  set work.master_file5;

  newownership = input(left(ownership),8.);

  newownership1 = input(left(ownership1),8.);

  newtype = input(left(type), 8.);

RUN;

PG

PG

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

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 1 reply
  • 975 views
  • 0 likes
  • 2 in conversation