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

I've tried several solutions on here but I can't quite get the result needed.

 

I am preparing to merge 2 tables, but before so I need to convert 10 fields from character to numeric.  

The error code that provoked this cry for help is.   ERROR: Variable TMP has been defined as both character and numeric.

 

I am trying to get the variables TMP and DPT to change to numeric values, but depending on the format that I pick (best8, $char, etc) I will either get blanks or dots in the results.

 

 

Code is as follows:

 

data updt_data

updt_forecast;

set weath_updt;

if status = "O" then output updt_data;

else output updt_forecast;

 

tmp_new=input(TMP,best8.);

dpt_new=input(DPT,best8.);

 

drop TMP;    Rename tmp_new=TMP;

drop dpt;      Rename dpt_new=DPT;

 

run;

 

1 ACCEPTED SOLUTION

Accepted Solutions
data_null__
Jade | Level 19
Looks like you are OUTPUTing before you assign the new variables a value.

View solution in original post

2 REPLIES 2
data_null__
Jade | Level 19
Looks like you are OUTPUTing before you assign the new variables a value.
tobyfarms
Fluorite | Level 6

A simple misstep can throw off the entire code.  Issue fixed, thanks @data_null__

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
  • 2 replies
  • 805 views
  • 0 likes
  • 2 in conversation