Hi SAS Forum,
The variable named “account_number” in dataset A is a numeric (it is sure).
I wanted to convert it into a character.
I used this code.
data B (rename=(account_number_new=account_number));
set A;
account_number_new=left(put(account_number, $32.)); /*to convert to character;*/
drop account_number;
run;
Question:
This warning comes but conversion happened.
WARNING: Variable ACCOUNT_NUMBER has already been defined as numeric.
Could anyone help me to understand why this warning?
Thanks
Mirisage
Should be
account_number_new=left(put(account_number, 32.)); /*to convert to character;*/
Should be
account_number_new=left(put(account_number, 32.)); /*to convert to character;*/
You're going to get the warning regardless, but you should be able to ignore it. If your PROC Contents shows the variable you want coming out as character, you're doing fine.
The warning message is because you tried to apply a character format ($32.) to a numeric variable. Use a numeric format like 32. instead.
Duh! <smacks self on head> Tom is totally right.
You're using a character informat and applying it to a numeric variable. The informat that you use in your PUT function should be the same variable type as the incoming source data (in this case numeric). It will still output the new variable as character.
What I said was also technically kind of true, but that's just because SAS was being nice and forgiving, not because your code was technically correct.
Hi DBailey, Tom and Tasha,
Many thanks to eveyone of you for this help.
Regards
Mirisage
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.