BookmarkSubscribeRSS Feed
apple
Calcite | Level 5

Using SAS EG 7.1.

 

Below is only part of my macro, but it is where the problem occurs. How do I solve it? THank you

 

ERROR: A character operand was found in the %EVAL function or %IF condition where a numeric operand is required. The condition was:

&MONTHF =12 and &MONTHQ=06

 

[Code]

%IF &MONTHF =12 and &MONTHQ =06 %THEN %DO;

 

%DO YEAR=&FIRSTYR %TO %eval(&LASTYR-1);

%let YEARQ = %eval(&YEAR);

data Merged&YEAR.&MONTHF;

merge

F&YEAR.&MONTHF (IN=A) QC&YEARQ.&MONTHQ(IN=B);

BY UIN;

IF A AND B Or (A AND Age=0);

run;

%END;

%END;

[/Code]

 

4 REPLIES 4
Quentin
Super User

Are &MonthF and &MonthQ resolving?  What do they resolve to?

The Boston Area SAS Users Group (BASUG) is hosting an in person Meeting & Training on June 27!
Full details and registration info at https://www.basug.org/events.
apple
Calcite | Level 5
&MonthF and &MonthQ are character type. They could be 06 or 12.
Quentin
Super User
Macro variables don't have a type. They are always text. I suggest you check the values by adding a statement like %put >>&MonthF<< >>&MonthQ<<; to see what they resolve to. Or you could turn on options symbolgen.
The Boston Area SAS Users Group (BASUG) is hosting an in person Meeting & Training on June 27!
Full details and registration info at https://www.basug.org/events.
Reeza
Super User

Your macro variables Year and YearQ are identical - I would recommend keeping only one. 

 

I would consider simplifying your macro's. Write a single macro that stacks or merges your datasets the way you want. Create a dataset that has the list of datasets to merge and then use call execute to execute your macro. It will be easier to debug and modify in my opinion. Obviously this is a style choice, but I find macro loops to be unwieldy at the best of times. 

 

I'm also wondering about your process...did you create all these separate monthly files, and is there a way to avoid that in the first place. This is usually why the recommendation comes to not split our data sets!

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 1824 views
  • 0 likes
  • 3 in conversation