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

Hello,

I want to convert 2 numeric variables (DemAffl & DemAge) from an existing data set to character variables on a new data set. I tried to use the informat statement:

 

 

data sasuser.newset; 
set sasuser.organics(obs=20000);
informat ID $10. DemAffl $10. DemAge $8. DemCluster $2. DemClusterGroup $1. DemGender $1. DemReg $10. 
DemTVReg $12. PromClass $8. PromSpend 8.2 PromTime 8. TargetAmt 8. TargetBuy 8.;
run;

 

 

 

But it is not working & the log shows the following:

 

WARNING: Variable DemAffl has already been defined as numeric.
WARNING: Variable DemAge has already been defined as numeric.

 

Attaching the proc contents output below for reference,

Proc contents.JPG

 

Thanks.

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
LinusH
Tourmaline | Level 20
Informat statement does not convert anything. It adds metadata to the variables listed.
Use the PUT function to create character variables (And INPUT function to create numerical ones).
Data never sleeps

View solution in original post

1 REPLY 1
LinusH
Tourmaline | Level 20
Informat statement does not convert anything. It adds metadata to the variables listed.
Use the PUT function to create character variables (And INPUT function to create numerical ones).
Data never sleeps

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

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