<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Mail result of different tests in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Mail-result-of-different-tests/m-p/509189#M136848</link>
    <description>Does the file Mailbox statement support running without the %. Now i receive an error when using the file statement. ("Statement is not valid or it is used out of proper order.")</description>
    <pubDate>Wed, 31 Oct 2018 16:04:35 GMT</pubDate>
    <dc:creator>Max-A</dc:creator>
    <dc:date>2018-10-31T16:04:35Z</dc:date>
    <item>
      <title>Mail result of different tests</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Mail-result-of-different-tests/m-p/509096#M136809</link>
      <description>&lt;P&gt;I am trying to create a&amp;nbsp; test which will send the results by email.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I created the mail already, but i want to add a condition to it.&lt;/P&gt;&lt;P&gt;The thing it has to check is whether a table contains missing values in certain columns. (col1 and col2 for example).&lt;/P&gt;&lt;P&gt;I was hoping there would be an easy way to call the column of a table and use the&lt;/P&gt;&lt;P&gt;"if WORK.MYTABLE.col1=. then" Statement.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately this is not working, is there another way to check whether the columns of a table contain any missing values?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Oct 2018 13:29:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Mail-result-of-different-tests/m-p/509096#M136809</guid>
      <dc:creator>Max-A</dc:creator>
      <dc:date>2018-10-31T13:29:02Z</dc:date>
    </item>
    <item>
      <title>Re: Mail result of different tests</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Mail-result-of-different-tests/m-p/509102#M136814</link>
      <description>&lt;P&gt;See a quick example here:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test;
set sashelp.class;
if _n_ = 5 then age = .;
run;

proc sql;
select nmiss(age) into :mailcond
from test;
quit;

%if &amp;amp;mailcond
%then %do;
%put sending mail here;
%end;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 31 Oct 2018 13:39:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Mail-result-of-different-tests/m-p/509102#M136814</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-10-31T13:39:43Z</dc:date>
    </item>
    <item>
      <title>Re: Mail result of different tests</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Mail-result-of-different-tests/m-p/509111#M136819</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Note:&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;&amp;nbsp;example uses open code %IF %THEN which is supported only if your using latest SAS release SAS 9.4 Maintenance 5. For lower versions you may need to put within a macro.&lt;/P&gt;</description>
      <pubDate>Wed, 31 Oct 2018 14:04:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Mail-result-of-different-tests/m-p/509111#M136819</guid>
      <dc:creator>SuryaKiran</dc:creator>
      <dc:date>2018-10-31T14:04:22Z</dc:date>
    </item>
    <item>
      <title>Re: Mail result of different tests</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Mail-result-of-different-tests/m-p/509114#M136821</link>
      <description>&lt;P&gt;proc sql;&lt;BR /&gt;select nmiss(name), nmiss(age), nmiss(sex) into :mailcond&lt;BR /&gt;from test;&lt;BR /&gt;quit;&lt;BR /&gt;&lt;BR /&gt;FILENAME Mailbox EMAIL "mail@test.nl" type="text/html";&lt;BR /&gt;filename REPORT "%sysfunc(pathname(work))\test.html";&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;data _null_;&lt;BR /&gt;file Mailbox;&lt;BR /&gt;if &amp;amp;mailcond &amp;gt; 0&lt;BR /&gt;then do;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;put "values in mailcond are &amp;gt; 0";&lt;BR /&gt;end;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the problem now is that the program will always send a mail. Which is not too much of a problem of course, i just have to add a final put to say that everything is fine. But is there a way to only send the email if &amp;amp;mailcond &amp;gt; 0? Because the put "values in mailcond are &amp;gt; 0"; is working already.&lt;/P&gt;</description>
      <pubDate>Wed, 31 Oct 2018 14:10:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Mail-result-of-different-tests/m-p/509114#M136821</guid>
      <dc:creator>Max-A</dc:creator>
      <dc:date>2018-10-31T14:10:33Z</dc:date>
    </item>
    <item>
      <title>Re: Mail result of different tests</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Mail-result-of-different-tests/m-p/509119#M136822</link>
      <description>&lt;P&gt;Wrap the mail sending code in a macro condition:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%if &amp;amp;mailcond
%then %do;

filename mailbox email "mail@test.nl" type="text/html";

data _null_;
file Mailbox;
put "values in mailcond are &amp;gt; 0";
run;

%end;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If you are before SAS 9.4M5, you need to put the whole %if %then block into a macro definition and call the macro.&lt;/P&gt;</description>
      <pubDate>Wed, 31 Oct 2018 14:15:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Mail-result-of-different-tests/m-p/509119#M136822</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-10-31T14:15:12Z</dc:date>
    </item>
    <item>
      <title>Re: Mail result of different tests</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Mail-result-of-different-tests/m-p/509122#M136824</link>
      <description>&lt;P&gt;nothing happens with the new code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%Macro mail();
%if &amp;amp;mailcond
%then %do;
    FILENAME Mailbox EMAIL "" type="text/html";

    data _null_;
    file Mailbox;
    put "values in mailcond are &amp;gt; 0";
    run;
%end;
%mend;

%mail();
RUN; QUIT;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i do not use 9.4. i am currently on 9.3, hopefully we will update to 9.4 in a few months&lt;/P&gt;</description>
      <pubDate>Wed, 31 Oct 2018 14:40:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Mail-result-of-different-tests/m-p/509122#M136824</guid>
      <dc:creator>Max-A</dc:creator>
      <dc:date>2018-10-31T14:40:08Z</dc:date>
    </item>
    <item>
      <title>Re: Mail result of different tests</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Mail-result-of-different-tests/m-p/509132#M136831</link>
      <description>&lt;P&gt;The open code %if-%then is one of the really nice-to-have things in 9.4M5.&lt;/P&gt;</description>
      <pubDate>Wed, 31 Oct 2018 14:37:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Mail-result-of-different-tests/m-p/509132#M136831</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-10-31T14:37:40Z</dc:date>
    </item>
    <item>
      <title>Re: Mail result of different tests</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Mail-result-of-different-tests/m-p/509135#M136833</link>
      <description>&lt;P&gt;I probably missed something, because no mail is send, but the log is not showing any errors.&lt;/P&gt;</description>
      <pubDate>Wed, 31 Oct 2018 14:41:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Mail-result-of-different-tests/m-p/509135#M136833</guid>
      <dc:creator>Max-A</dc:creator>
      <dc:date>2018-10-31T14:41:55Z</dc:date>
    </item>
    <item>
      <title>Re: Mail result of different tests</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Mail-result-of-different-tests/m-p/509137#M136834</link>
      <description>&lt;P&gt;Use %put statements at suitable places in your code to verify that you get the values in your macro variables that you expect.&lt;/P&gt;
&lt;P&gt;Also run macro code with&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options mlogic mprint symbolgen;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 31 Oct 2018 14:46:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Mail-result-of-different-tests/m-p/509137#M136834</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-10-31T14:46:39Z</dc:date>
    </item>
    <item>
      <title>Re: Mail result of different tests</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Mail-result-of-different-tests/m-p/509156#M136838</link>
      <description>&lt;P&gt;You might need to change the condition on checking all three variables missing.&amp;nbsp;In your previous code you selected 3 columns and put only one macro variable.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
select case when nmiss(name)=0 and nmiss(age)=0 and nmiss(sex)=0 then 1
			else 0 end  into:Flag
	from test;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Later you can call the macro using call execute.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro send_email();
FILENAME Mailbox EMAIL "mail@test.nl" type="text/html";
filename REPORT "%sysfunc(pathname(work))\test.html";


data _null_;
file Mailbox;
if &amp;amp;mailcond &amp;gt; 0
then do;
    put "values in mailcond are &amp;gt; 0";
end;
run;
%mend send_email;

data _null_;
if &amp;amp;Flag=0 then call execute('%send_email');
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 31 Oct 2018 15:14:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Mail-result-of-different-tests/m-p/509156#M136838</guid>
      <dc:creator>SuryaKiran</dc:creator>
      <dc:date>2018-10-31T15:14:49Z</dc:date>
    </item>
    <item>
      <title>Re: Mail result of different tests</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Mail-result-of-different-tests/m-p/509175#M136840</link>
      <description>&lt;P&gt;When i execute the code below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
select case when nmiss(name)=0 and nmiss(age)=0 and nmiss(sex)=0 then 1
	else 0 end into:testMacro
	from work.test;
quit;


%Macro mail();
FILENAME Mailbox EMAIL "" type="text/html";

data _null_;
file Mailbox;
%if &amp;amp;mailcond
%then %do;
	%put "values in mailcond are &amp;gt; 0";
%end;
run;
%mend mail;

data _null_;
if &amp;amp;testMacro = 0 then call execute('%mail');
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;i receive the error below&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;MPRINT(MAIL):   FILENAME Mailbox EMAIL "" type="text/html";
"why isnt it working"
MPRINT(MAIL):   * data _null_;
MPRINT(MAIL):   file Mailbox;
WARNING: Apparent symbolic reference MAILCOND not resolved.
ERROR: A character operand was found in the %EVAL function or %IF condition where a numeric operand is required. The condition was: 
       &amp;amp;mailcond 
ERROR: The macro MAIL will stop executing.
NOTE: The SAS System stopped processing this step because of errors.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
2                                                          The SAS System                          16:29 Wednesday, October 31, 2018

      

NOTE: CALL EXECUTE generated line.
1         + FILENAME Mailbox EMAIL "" type="text/html"; *  data _null_; file Mailbox;
NOTE: Line generated by the CALL EXECUTE routine.
1         + FILENAME Mailbox EMAIL "" type="text/html"; *  data _null_; file Mailbox;
                                                                                            ____
                                                                                            180
ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 31 Oct 2018 15:38:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Mail-result-of-different-tests/m-p/509175#M136840</guid>
      <dc:creator>Max-A</dc:creator>
      <dc:date>2018-10-31T15:38:28Z</dc:date>
    </item>
    <item>
      <title>Re: Mail result of different tests</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Mail-result-of-different-tests/m-p/509189#M136848</link>
      <description>Does the file Mailbox statement support running without the %. Now i receive an error when using the file statement. ("Statement is not valid or it is used out of proper order.")</description>
      <pubDate>Wed, 31 Oct 2018 16:04:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Mail-result-of-different-tests/m-p/509189#M136848</guid>
      <dc:creator>Max-A</dc:creator>
      <dc:date>2018-10-31T16:04:35Z</dc:date>
    </item>
    <item>
      <title>Re: Mail result of different tests</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Mail-result-of-different-tests/m-p/509199#M136853</link>
      <description>&lt;P&gt;The into clause in SQL must create the same variable you use in the condition.&lt;/P&gt;</description>
      <pubDate>Wed, 31 Oct 2018 16:29:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Mail-result-of-different-tests/m-p/509199#M136853</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-10-31T16:29:40Z</dc:date>
    </item>
    <item>
      <title>Re: Mail result of different tests</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Mail-result-of-different-tests/m-p/509201#M136855</link>
      <description>Thanks! nearly there. The only thing that is not working atm is the file statement. It looks like this is not the way to use it in a macro. Any ideas?</description>
      <pubDate>Wed, 31 Oct 2018 16:34:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Mail-result-of-different-tests/m-p/509201#M136855</guid>
      <dc:creator>Max-A</dc:creator>
      <dc:date>2018-10-31T16:34:15Z</dc:date>
    </item>
    <item>
      <title>Re: Mail result of different tests</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Mail-result-of-different-tests/m-p/509207#M136858</link>
      <description>&lt;P&gt;From your log, the file statement is never even compiled because the macro fails.&lt;/P&gt;</description>
      <pubDate>Wed, 31 Oct 2018 17:01:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Mail-result-of-different-tests/m-p/509207#M136858</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-10-31T17:01:10Z</dc:date>
    </item>
    <item>
      <title>Re: Mail result of different tests</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Mail-result-of-different-tests/m-p/509444#M136964</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;1                                                          The SAS System                           11:33 Thursday, November 1, 2018

1          ;*';*";*/;quit;run;
2          OPTIONS PAGENO=MIN;
3          %LET _CLIENTTASKLABEL='Program_newMaill';
4          %LET _CLIENTPROJECTPATH='R:\Mijn Documenten\Stagedocumenten\Eigen project\Prototypes\AutoTest_new.egp';
5          %LET _CLIENTPROJECTNAME='AutoTest_new.egp';
6          %LET _SASPROGRAMFILE=;
7          
8          ODS _ALL_ CLOSE;
9          OPTIONS DEV=ACTIVEX;
10         GOPTIONS XPIXELS=0 YPIXELS=0;
11         FILENAME EGSR TEMP;
12         ODS tagsets.sasreport13(ID=EGSR) FILE=EGSR STYLE=HtmlBlue
12       ! STYLESHEET=(URL="file:///C:/Program%20Files/SASHome/x86/SASEnterpriseGuide/5.1/Styles/HtmlBlue.css") NOGTITLE NOGFOOTNOTE
12       !  GPATH=&amp;amp;sasworklocation ENCODING=UTF8 options(rolap="on");
NOTE: Writing TAGSETS.SASREPORT13(EGSR) Body file: EGSR
13         
14         GOPTIONS ACCESSIBLE;
15         data _null_;
16         if &amp;amp;testMacro = 1 then call execute('%mail');
17         run;

MPRINT(MAIL):   FILENAME Mailbox EMAIL "" type="text/html" subject="Automatische controle";
"why isnt it working"
MPRINT(MAIL):   * data _null_;
MPRINT(MAIL):   file Mailbox;
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      

NOTE: CALL EXECUTE generated line.
1         + FILENAME Mailbox EMAIL ""  type="text/html" subject="Automatische controle"; *  data _null_; file 
Mailbox;
NOTE: Line generated by the CALL EXECUTE routine.
1         + FILENAME Mailbox EMAIL ""  type="text/html" subject="Automatische controle"; *  data _null_; file
                                                                                                                             ____
                                                                                                                             180
1        !+Mailbox;
ERROR 180-322: Statement is not valid or it is used out of proper order.

18         
19         
20         GOPTIONS NOACCESSIBLE;
21         %LET _CLIENTTASKLABEL=;
22         %LET _CLIENTPROJECTPATH=;
23         %LET _CLIENTPROJECTNAME=;
24         %LET _SASPROGRAMFILE=;
25         
26         ;*';*";*/;quit;run;
27         ODS _ALL_ CLOSE;
28         
29         
30         QUIT; RUN;
31         &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;The error still remains, i just don't get what is wrong . I tried %file Mailbox. But that is not the solution either&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
select case when nmiss(name)=0 and nmiss(age)=0 and nmiss(sex)=0 then 1
	else 0 end into:testMacro
	from work.test;
quit;


%macro mail;
FILENAME Mailbox EMAIL "" 
type="text/html"
subject="Automatische controle";
%put "why isnt it working";

data _null_;
file Mailbox;
%if &amp;amp;testMacro = 0
%then %do;
	%put "values in mailcond are &amp;gt; 0";
%end;
%run;
%mend mail;

data _null_;
if &amp;amp;testMacro = 1 then call execute('%mail');
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 01 Nov 2018 10:39:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Mail-result-of-different-tests/m-p/509444#M136964</guid>
      <dc:creator>Max-A</dc:creator>
      <dc:date>2018-11-01T10:39:48Z</dc:date>
    </item>
    <item>
      <title>Re: Mail result of different tests</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Mail-result-of-different-tests/m-p/509490#M136976</link>
      <description>&lt;P&gt;Remove &lt;STRONG&gt;'%'&lt;/STRONG&gt; symbol before &lt;STRONG&gt;RUN&lt;/STRONG&gt;. It has to be just &lt;STRONG&gt;'run'&lt;/STRONG&gt; not &lt;STRONG&gt;'%run'&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please find my comments below:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
select case when nmiss(name)=0 and nmiss(age)=0 and nmiss(sex)=0 then 1
	else 0 end into:testMacro
	from work.test;
quit;


%macro mail;
FILENAME Mailbox EMAIL 
to="test@email.com" /* TO= is missing */
type="text/html"
subject="Automatische controle";
%put "why isnt it working";

data _null_;
file Mailbox;
/* You maynot need the 'if' condition anymore */
/*%if &amp;amp;testMacro = 0*/
/*%then %do;*/
/*	%put "values in mailcond are &amp;gt; 0";*/
/*%end;*/
run;
%mend mail;

data _null_;
if &amp;amp;testMacro = 0 then call execute('%mail');
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 01 Nov 2018 12:40:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Mail-result-of-different-tests/m-p/509490#M136976</guid>
      <dc:creator>SuryaKiran</dc:creator>
      <dc:date>2018-11-01T12:40:29Z</dc:date>
    </item>
    <item>
      <title>Re: Mail result of different tests</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Mail-result-of-different-tests/m-p/509662#M137035</link>
      <description>&lt;P&gt;When you call execute a macro that contains macro logic, use %nrstr:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;call execute('%nrstr(%mail'));&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;otherwise you will experience macro timing problems. Macro statements are executed immediately, but Base SAS code has to wait until the calling datastep ends. %nrstr prevents premature execution of macro logic.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Nov 2018 19:42:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Mail-result-of-different-tests/m-p/509662#M137035</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-11-01T19:42:06Z</dc:date>
    </item>
  </channel>
</rss>

