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

Hi,

I have following code.

%let m = 0;

%let cal_month = %eval(intnx('month', &min_monthdate, &m));

SAS gave me an error message of

ERROR: Required operator not found in expression: intnx('month',        15096, 0)

How should I fix it? Thank you.

1 ACCEPTED SOLUTION

Accepted Solutions
Astounding
PROC Star

Macro language does not understand how to use INTNX.  You can force it to understand by adding %SYSFUNC.  In that case the quotes around 'month' disappear (macro language assumes that month is a character string and not a reference to a variable).  And there is no need for %EVAL since INTNX returns an integer.

%let cal_month = %sysfunc(intnx(month, &min_monthdate, &m));

View solution in original post

4 REPLIES 4
stat_sas
Ammonite | Level 13

let cal_month = %eval(intnx('month', "&min_monthdate"d, &m));

swimmer
Calcite | Level 5

Thank you for the reply, but I got the same error.

ERROR: Required operator not found in expression: intnx('month', "       15096"d, 0)

Astounding
PROC Star

Macro language does not understand how to use INTNX.  You can force it to understand by adding %SYSFUNC.  In that case the quotes around 'month' disappear (macro language assumes that month is a character string and not a reference to a variable).  And there is no need for %EVAL since INTNX returns an integer.

%let cal_month = %sysfunc(intnx(month, &min_monthdate, &m));

swimmer
Calcite | Level 5

Thank you so much! It works!

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

How to Concatenate Values

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 4 replies
  • 940 views
  • 1 like
  • 3 in conversation