Here's my existing code, that always gives me an error
%let abc=%sysfunc(intnx('dtday',1662637746,365),datetime16.);
%put ABC &abc;
the large value 1662637746 is simply today's date and time in numeric format, which should work. I have tried other formats, including '07SEP12:00:00:00'dt, but I always get the same error message:
WARNING: An argument to the function INTNX referenced by the %SYSFUNC or %QSYSFUNC macro function is out of range.
NOTE: Mathematical operations could not be performed during %SYSFUNC function execution. The result of the operations have been
set to a missing value.
So what am I doing wrong?
Quotes around text literals are invalid when using %SYSFUNC(). In general quotes are not needed in the macro environment. They are needed in SAS so the compiler can tell what is a variable reference and what is a text literal. But everything is just text strings to the macro language.
%let abc=%sysfunc(intnx(dtday,1662637746,365),datetime16.);
Quotes around text literals are invalid when using %SYSFUNC(). In general quotes are not needed in the macro environment. They are needed in SAS so the compiler can tell what is a variable reference and what is a text literal. But everything is just text strings to the macro language.
%let abc=%sysfunc(intnx(dtday,1662637746,365),datetime16.);
Thanks, Tom, I knew it must be something simple.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.