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]
Are &MonthF and &MonthQ resolving? What do they resolve to?
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!
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.