Hi All,
How I can use SAS macro for one year from today?
I used the Macro below and got the wrong date as 01Jan2017, is there anything I did wrong? Thank you!
%let LYT=%sysfunc(intnx(year,%sysfunc(today()),-1),date9.);
%PUT &LYT;
Jade
%let LYT=%sysfunc(intnx(year,%sysfunc(today()),-1,s), date9. );
%PUT &LYT;
If you miss the aurguent "SAMEDAY" or "S" or "SAME" then by default it will give you 1st day of the year.
%let LYT=%sysfunc(intnx(year,%sysfunc(today()),-1,s), date9. );
%PUT &LYT;
%let LYT=%sysfunc(intnx(year,%sysfunc(today()),-1,s), date9. );
%PUT &LYT;
If you miss the aurguent "SAMEDAY" or "S" or "SAME" then by default it will give you 1st day of the year.
Thank you!
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9.
Lock in the best rate now before the price increases on April 1.
Need to connect to databases in SAS Viya? SAS’ David Ghan shows you two methods – via SAS/ACCESS LIBNAME and SAS Data Connector SASLIBS – in this video.
Find more tutorials on the SAS Users YouTube channel.