Hello,
I wanted to create a dataset called timestamps that lists the last day of each month of the preceding 6 months. My solution for this is:
DATA timestamps;
d = today();
format d date9.;
DO i=0 TO 5;
d = intnx('month',d,-i)-1;
output;
END;
run;
DATA timestamps;
d = today();
format d date9.;
d = intnx('month',d,-1)-1;
run;gives: 31MAY2017At a guess your changing the variable your working on, try:
data timestamps;
d = today();
format d dt date9.;
do i=0 to 5;
dt=intnx('month',d,-i)-1;
output;
end;
run;
At a guess your changing the variable your working on, try:
data timestamps;
d = today();
format d dt date9.;
do i=0 to 5;
dt=intnx('month',d,-i)-1;
output;
end;
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!
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.