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
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
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.
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.
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;
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.