BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
fgillen1
Fluorite | Level 6

Hi all,

 

I am looking to add a leading '0' to variables within a field that are less that 5 characters in length. Does anyone know of a bit of code that can achieve this? Below is my attempt. I know everything after 'THEN' works fine, its the selecting variables with less than 5 characters that is hindering me.

 

CASE
WHEN substr(t1.ded_code,max(1,length(t1.ded_code)-3)) THEN PUT(INPUT(t1.ded_code, best.), z2.)
ELSE t1.ded_code
END
AS ded_code_v2

 

Regards

Finbar

1 ACCEPTED SOLUTION

Accepted Solutions
RW9
Diamond | Level 26 RW9
Diamond | Level 26

You can simplify it by using SAS functions:

case when lengthn(T1.DED_CODE) < 5 then cats(repeat("0",5-lengthn(T1.DED_CODE)),T1.DED_CODE)
     else T1.DED_CODE end as DED_CODE_V2

So if the trimmed lenght is less than five concatenate 0 for each space less than five.  Note, if DED_CODE is numeric, you could simplify this further by:

put(input(T1.DED_CODE,best.),z5.) as DED_CODE_V2

The Z format padds out numbers with preceeding zeroes.

View solution in original post

2 REPLIES 2
RW9
Diamond | Level 26 RW9
Diamond | Level 26

You can simplify it by using SAS functions:

case when lengthn(T1.DED_CODE) < 5 then cats(repeat("0",5-lengthn(T1.DED_CODE)),T1.DED_CODE)
     else T1.DED_CODE end as DED_CODE_V2

So if the trimmed lenght is less than five concatenate 0 for each space less than five.  Note, if DED_CODE is numeric, you could simplify this further by:

put(input(T1.DED_CODE,best.),z5.) as DED_CODE_V2

The Z format padds out numbers with preceeding zeroes.

fgillen1
Fluorite | Level 6

Hi,

 

Thanks! That works fine, I just changed 

cats(repeat("0",5-lengthn(T1.DED_CODE))

to

cats(repeat("0",4-lengthn(T1.DED_CODE))

 the first one was throwing in two leading '0's

 

Regards

Finbar

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 3494 views
  • 1 like
  • 2 in conversation