- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Hello,
In SAS where I have a data table in the work . What line of code do I use to convert a character column to text column with leading zeros. For example, in the column SSN, it has numeric digits but some don't have leading 0s. Like for example, it is has 11 instead of 0011. How do I convert all the values in that column in a character type column with leading zeros to signify the last four of a social security number.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
@kmin87 wrote:
I want the last four social security with leading zeros. For example one of the value in the column is 11 in numeric format and I want it to be 0011 in character format in a new column in a new data set
data test; ssn =999560011; lastfour = substr(put(ssn,ssn.),8); run;
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
You don't need to convert SSNs. Try this:
data test;
ssn = 11;
format ssn ssn.;
put ssn =;
run;
i
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
I want the last four social security with leading zeros. For example one of the value in the column is 11 in numeric format and I want it to be 0011 in character format in a new column in a new data set
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
@kmin87 wrote:
I want the last four social security with leading zeros. For example one of the value in the column is 11 in numeric format and I want it to be 0011 in character format in a new column in a new data set
data test; ssn =999560011; lastfour = substr(put(ssn,ssn.),8); run;