BookmarkSubscribeRSS Feed
BigD
Calcite | Level 5

Hi,

I want to write a line in a report that is execute only is there is missing data. As an example below: New York does not report so I would like to print that in my report and not print anything is all sites report. I've gotten this far, but don't know how to produce the ods pdf text statement dynamically.

ods pdf;

data test_data;

input site  $30. ;

cards;

Dallas Ft Worth

Cleveland

Chicago

;

run;

data lookup;

input facility $30. ;

cards;

Dallas Ft Worth

Cleveland

Chicago

New York

;

run;

proc sql;

create table WhoIsMissing

as select a.site, b.facility

from test_data as a

right join lookup as b

on a.site=b.facility;

quit;

/*put the name into a macro variable;*/

proc sql noprint;

select  facility into:missing

from whoismissing

where site='';

quit;

%put &missing;

/*If there is no value in the macro variable then do nothing.*/

/*if there is a data value in the macro variable the print it*/

/*stumped here on how to do this dynamically*/

/*Also not sure how to deal with two or more missing sites*/

Ods pdf text="^S={font=('Arial' ,12pt, bold ) just=center } Site &Missing is missing";

ods pdf close;

3 REPLIES 3
Reeza
Super User

1. %if %then %do to control macro execution:

%macro test(value);

%if &value=%str() %then %do;

%put "Macro Variable is empty";

%end;

%else %do;

%put "Macro Variable is:" &value;

%end;

%mend;

%test();

%test(one);

%test(23);

%test();

%test(3kdjklfa);

BigD
Calcite | Level 5

Thanks. Works nicely.

Bruce

cathyhill
Calcite | Level 5

First, thank you so much for posting this pdf editing issue here.Smiley Happy Since you have solved the pdf text processing problem, would you please mark it as solved. Thanks.Smiley Wink

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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