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.
You're looking for the modulo-function: mod(101234,100) gives 34.
Works like a charm. Thanks.
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.
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;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.
Ready to level-up your skills? Choose your own adventure.