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