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

I am writing a macro to create a 2x2 table and calculate sensitivity/specificity/ etc. A part of the macro is not working well, and I have no idea why. The code does not have any error message, but seems it only import the set &data, but not do anything about the %if %then result. Here is part of the code:

 

%MACRO tabulate(data, target, comp);

   /* ................datalines........................ */

 

  data data1 (replace=yes);

           set &data;

          %if "&comp._&target._result"="Positive" and "V_&target._result"="Positive" %then result="TP";

          %else %if "&comp._&target._result"="Positive" and "V_&target._result"="Negative" %then result="FN";

           %else %if "&comp._&target._result"="Negative" and "V_&target._result"="Positive" %then result="FP";

           %else %if "&comp._&target._result"="Negative" and "V_&target._result"="Negative" %then result="TN";

     run;

 

/*................ more data ............*/

%MEND;

 

 

I also tried to use %then %put result = "TP", still not working. This part of the code should give me a new column with name "result", and have "TP" "FN" "FP" "TN" in the column.

I can run this in the main program, but when I put this into a macro, it does not work.

Thank you if you can give me some advice.

1 ACCEPTED SOLUTION

Accepted Solutions
AndrewHowell
Moderator

Macro code is scanned & executed before data step code is scanned & executed.

 

It might be simpler to maintain if you separate the macro & data step code:

 

%MACRO tabulate(data, target, comp);

  /* ................datalines........................ */

%local result;
%if  &comp._&target._result=Positive and V_&target._result=Positive %then %let result=TP;
%else %if &comp._&target._result=Positive and V_&target._result=Negative %then result=FN;
%else %if &comp._&target._result=Negative and V_&target._result=Positive %then result=FP;
%else %if &comp._&target._result=Negative and V_&target._result=Negative %then result=TN;

  data data1 (replace=yes);
          set &data;
          result="&result";
  run;
 
/*................ more data ............*/

%MEND;

 

View solution in original post

3 REPLIES 3
Astounding
PROC Star

DATA steps can't execute macro statements.  Just get rid of all the percent signs and you should be fine.  (Leave the ampersands in place, only the percent signs need to go.)

AndrewHowell
Moderator

Macro code is scanned & executed before data step code is scanned & executed.

 

It might be simpler to maintain if you separate the macro & data step code:

 

%MACRO tabulate(data, target, comp);

  /* ................datalines........................ */

%local result;
%if  &comp._&target._result=Positive and V_&target._result=Positive %then %let result=TP;
%else %if &comp._&target._result=Positive and V_&target._result=Negative %then result=FN;
%else %if &comp._&target._result=Negative and V_&target._result=Positive %then result=FP;
%else %if &comp._&target._result=Negative and V_&target._result=Negative %then result=TN;

  data data1 (replace=yes);
          set &data;
          result="&result";
  run;
 
/*................ more data ............*/

%MEND;

 

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 3 replies
  • 1322 views
  • 0 likes
  • 4 in conversation