BookmarkSubscribeRSS Feed
Jahanzaib
Quartz | Level 8

i have variable family it contains values 0 and 1 in the sas file. but sas shows it a character variable. 

how can i convert character variable to numerical. 

1 REPLY 1
Kurt_Bremser
Super User

It is usually a good idea to store boolean values in a $1. column, as numeric SAS variables use at least 3 bytes for the same Information.

To convert, use the input function.

If you positively want to change your datasets(s), consider this macro:

%macro change_to_num(ds,var);
data &ds;
set &ds(rename=(&var=_old&var));
&var = input(_old&var,best.);
drop _old&var;
run;
%mend;

sas-innovate-wordmark-2025-midnight.png

Register Today!

Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.


Register now!

How to connect to databases in SAS Viya

Need to connect to databases in SAS Viya? SAS’ David Ghan shows you two methods – via SAS/ACCESS LIBNAME and SAS Data Connector SASLIBS – in this video.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 875 views
  • 1 like
  • 2 in conversation