BookmarkSubscribeRSS Feed
atiedt
Fluorite | Level 6

Hello everyone, 

 

I've written the following macro to use proc sql to perfom a left join on two tables according to certain conditions. The macro works when the where clause references one  variable value ('TYPE'), but not on several variable values. Anyone know how can I adjust this so that I can perform this join for several possible variable values using the conditional "where" "in"?

 

I'd appreciate some advice on this issue! 

 

 

%MACRO JOINSUBSET(LIB=, DSN=, MAINFORM=, SUBFORM=, DSTYPE=, TYPE=)/MINOPERATOR;

%IF &TYPE IN Accepted Denied Pending Revoked %THEN %DO;

     PROC SQL;
          CREATE TABLE &LIB..SUM_&MAINFORM._&SUBFORM._&DSTYPE AS
          SELECT a.ACT_YEAR, a.ACT_MONTH,
          COUNT(DISTINCT a.RECEIPT_NUMBER) AS COUNT
          FROM &LIB..&DSN.&MAINFORM a LEFT JOIN
                     &LIB..&DSN.&SUBFORM b
         ON a.IDENTIFIER=b.IDENTIFIER
         WHERE a.CURRENT_STATUS IN (SELECT "&TYPE" FROM &LIB..&DSN.&MAINFORM )
         AND b.DATA_TYPE="Accept"
        GROUP BY a.ACT_YEAR, a.ACT_MONTH;
     QUIT;

%END;

 

%MEND JOINSUBSET;

%JOINSUBSET(LIB=SASUSER, DSN=DATASET_, MAINFORM=S23, SUBFORM=X54, DSTYPE=DENIED, TYPE=Denied Revoked)

1 REPLY 1
HB
Barite | Level 11 HB
Barite | Level 11

I would want to know if the SQL correctly runs by itself outside the macro and I would want to put single quotes on Accept. 

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
  • 1 reply
  • 1853 views
  • 0 likes
  • 2 in conversation