Creating prompt for missing and nonmissing
问题 I am trying to add prompt for missing or nonmissing options. This code doesn't work ,need to fix that. rec_And_issues is a new table that I created in the report. Need to pick rec_and_issues.SFVFDBK_FEEDBACK_COMMENTS is missing or not. %macro missing_or_nonmissing; %if "&sel_issue" eq "Missing" %then %do; DATA rec_and_issues; set rec_and_issues; rec_and_issues.SFVFDBK_FEEDBACK_COMMENTS is null; run; %end; %else %if "&sel_issue" eq "NonMissing" %then %do; DATA rec_and_issues; set rec_and