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__

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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