SYMBOLGEN: Macro variable YES resolves to YES 3894 DATA &YES &NO &ALLTOTAL; SYMBOLGEN: Macro variable NO resolves to NO SYMBOLGEN: Macro variable ALLTOTAL resolves to TOTAL 3895 SET COMBINEALLtesTaBC; 3896 SELECT (F_&DISEASE); SYMBOLGEN: Macro variable DISEASE resolves to HADSTRK 3897 WHEN ('&YES') SYMBOLGEN: Macro variable YES resolves to YES 3897! OUTPUT &YES; 3898 WHEN ('&NO') SYMBOLGEN: Macro variable NO resolves to NO 3898! OUTPUT &NO; 3899 WHEN ('TOTAL') SYMBOLGEN: Macro variable ALLTOTAL resolves to TOTAL 3899! OUTPUT &ALLTOTAL; 3900 OTHERWISE; 3901 END; 3902 RUN; NOTE: There were 126 observations read from the data set MYNHS.COMBINEALLTESTABC. NOTE: The data set MYNHS.YES has 0 observations and 12 variables. NOTE: The data set MYNHS.NO has 0 observations and 12 variables. NOTE: The data set MYNHS.TOTAL has 0 observations and 12 variables. NOTE: DATA statement used (Total process time): real time 0.29 seconds cpu time 0.04 seconds SYMBOLGEN: Macro variable YES resolves to YES 3903 DATA &YES &NO &ALLTOTAL; SYMBOLGEN: Macro variable NO resolves to NO SYMBOLGEN: Macro variable ALLTOTAL resolves to TOTAL 3904 SET COMBINEALLtesTABC; SYMBOLGEN: Macro variable DISEASE resolves to HADSTRK 3905 if F_&disease = "YES" THEN SYMBOLGEN: Macro variable YES resolves to YES 3905! OUTPUT &YES; SYMBOLGEN: Macro variable DISEASE resolves to HADSTRK 3906 if F_&disease = "NO" THEN SYMBOLGEN: Macro variable NO resolves to NO 3906! OUTPUT &NO; SYMBOLGEN: Macro variable DISEASE resolves to HADSTRK 3907 if F_&disease = "TOTAL" THEN SYMBOLGEN: Macro variable ALLTOTAL resolves to TOTAL 3907! OUTPUT &ALLTOTAL; 3908 RUN; NOTE: There were 126 observations read from the data set MYNHS.COMBINEALLTESTABC. NOTE: The data set MYNHS.YES has 0 observations and 12 variables. NOTE: The data set MYNHS.NO has 0 observations and 12 variables. NOTE: The data set MYNHS.TOTAL has 0 observations and 12 variables. NOTE: DATA statement used (Total process time): real time 0.20 seconds cpu time 0.01 seconds