BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Jade_SAS
Pyrite | Level 9

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

1 ACCEPTED SOLUTION

Accepted Solutions
SuryaKiran
Meteorite | Level 14

%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.

 

 

Thanks,
Suryakiran

View solution in original post

3 REPLIES 3
novinosrin
Tourmaline | Level 20
%let LYT=%sysfunc(intnx(year,%sysfunc(today()),-1,s), date9. );

%PUT &LYT;
SuryaKiran
Meteorite | Level 14

%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.

 

 

Thanks,
Suryakiran
Jade_SAS
Pyrite | Level 9

Thank you!

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

How to connect to databases in SAS Viya

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.

Discussion stats
  • 3 replies
  • 1090 views
  • 0 likes
  • 3 in conversation