Changing the length of a Character Variable
***************************************************************************************
Hello SAS Communities,
I recently used proc import to import data from a .xls file. One of the variables within the data set is a character variable and the desired length is 11 variables long, however, after importing the data into my program the length of this variable is now 12.
Here are the SAS Table Properties that show the variable length for the variable SSN and the proc import statement that I used:
PROC IMPORT
DATAFILE = "&CourseRoot/Study/Data/Source/DATA.xls"
OUT = WORK.DATA
DBMS = XLS
REPLACE ;
SHEET = "Sheet1";
RUN;
Is there any way to change the variable length for SSN from 12 to 11?
Thank you,
De'Janae' Guillory-Williams
You can change length of a variable, but you take a risk of assigning a too short and value might be truncated. The code is:
data want;
length SSN <new length>;
set have;
run;
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!
What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.