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-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 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
  • 1302 views
  • 1 like
  • 2 in conversation