Hi I want to delete the last digit and replace with 1
ID
000342
000562
001342
001452
000322
I want:
000341
000561
001341
001451
000321
thanks in advance.
Seems extremely trivial. Are you sure that is what you want to do? Perhaps your real data is more complex?
data want; set have; substr(id,length(id))='1'; run;
View solution in original post
Assuming your variable is character this is one way:
data have; input id $; datalines; 000342 000562 001342 001452 000322 ; data want; set have; id = cats(substr(id,1,length(id)-1),'1'); run;
@Smitha9 wrote: Hi I want to delete the last digit and replace with 1 ID 000342 000562 001342 001452 000322 I want: 000341 000561 001341 001451 000321 thanks in advance.
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9.
Early bird rate extended! Save $200 when you sign up by March 31.
Register now!
SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.
Find more tutorials on the SAS Users YouTube channel.