BookmarkSubscribeRSS Feed

Hi,

I have a variable 'Remaining months' but I want this in a year format within proc sql but unsure on how to do this, any ideas please?

example -

Remaining months 60

I want to display 5 years

5 REPLIES 5
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Hi,

Simply divide by 12.

data have;

     remaining_months=60; output;

run;

proc sql;

     create table WANT as

     select     REMAINING_MONTHS,

                    strip(put(REMAINING_MONTHS / 12,best.))||" years" as YEARS

     from       HAVE;

quit;

Thanks,

How do I round it to display 2 years instead of  2.1666666667 years

RW9
Diamond | Level 26 RW9
Diamond | Level 26

With the round function?  Alternatively the floor (probably the best one for your scenario) or ceil functions depending on scenario.

To add, any SAS function can be used in a proc sql as long as you are not using pass-through (i.e. sending the sql to a database) as the DB wouldn't know about the SAS functions).  In general though there are several of the functions which are present in both SAS and native SQL, round being one of them, though slightly different syntax.

http://www.w3schools.com/sql/sql_func_round.asp

SQL Functions

jakarman
Barite | Level 11

Using a 5.2 format for years instead of best.   - The best in this case is not your best. The best is showing as much as possible could make sense. 

---->-- ja karman --<-----
Hima
Obsidian | Level 7

DATA HAVE;
REMAINING_MONTHS=62;
OUTPUT;
RUN;

PROC SQL;
CREATE TABLE WANT AS
  SELECT     REMAINING_MONTHS,CATS((REMAINING_MONTHS / 12), "YEARS") AS YEARS FROM HAVE;
QUIT;

PROC PRINT;
RUN;

Capture.JPG

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 5 replies
  • 853 views
  • 0 likes
  • 4 in conversation