BookmarkSubscribeRSS Feed
Avenue
Calcite | Level 5

Hi Guys,

I am trying to get the last 2 digits from a numeric field. Can you please assist:

If the value is 101234 then I want my output to be 34.

Thanks in advance.

4 REPLIES 4
user24feb
Barite | Level 11

You're looking for the modulo-function: mod(101234,100) gives 34.

Avenue
Calcite | Level 5

Works like a charm. Thanks.

aswadhama
Calcite | Level 5

Worked great.I wanted to get the output where the the numeric values in a column are not incremented by 100.Example:I want to see where the values are 150,192 etc.The valid values are only 100,200,300... etc. I used in proc sql as

and mod(a.XXXXX_AM,100)<>0 and worked great.

zahirraihan
Calcite | Level 5

Hi Avenue,

following code will assist you to resolve your problem:

DATA _null_;

  x1=101234;

  x2=INPUT(SUBSTR(PUT(x1,best.),LENGTH(PUT(x1,best.))-2+1),2.);

  PUT x2=;

RUN;

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

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 4 replies
  • 30322 views
  • 4 likes
  • 4 in conversation