where put(B.MONYYYY,MONYY7.)=put(a.default_mth+1,MONYY7.)
in this command does 1 means add one month?
1 DAY
data have;
input MONYYYY : date9. default_mth : date9.;
*format MONYYYY default_mth monyy7.;
cards;
21FEB2024 20FEB2024
;
run;
data want;
set have;
where put(/*B.*/MONYYYY,MONYY7.)=put(/*a.*/default_mth+1,MONYY7.);
run;
/* end of program */
Koen
The MONYY format is for date values. SAS date values are counts of days.
@HeatherNewton wrote:
where put(B.MONYYYY,MONYY7.)=put(a.default_mth+1,MONYY7.)
in this command does 1 means add one month?
You've got already the answer that +1 adds one day to a SAS date value.
The comparison then first writes the SAS date values as a string using a format that prints month and year. So what this selection logic obviously is doing is to only select rows where both dates are within the same month.
Another way to write this expression would be:
where intck('month',B.MONYYYY, a.default_mth+1)=0
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
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.