<?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: Please help in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Please-help/m-p/17498#M2544</link>
    <description>When you use a seed value of 0, SAS uses the time of day as the seed.  &lt;BR /&gt;
&lt;BR /&gt;
i.e your code W=UNIFORM(0);&lt;BR /&gt;
&lt;BR /&gt;
So that is why when you run this you are getting different results.  If you want the same results when using a random number generator use a fixed seed value.&lt;BR /&gt;
&lt;BR /&gt;
From the SAS documentation: &lt;A href="http://support.sas.com/onlinedoc/913/docMainpage.jsp" target="_blank"&gt;http://support.sas.com/onlinedoc/913/docMainpage.jsp&lt;/A&gt;&lt;BR /&gt;
Functions/UNIFORM&lt;BR /&gt;
Note: If seed  0, the time of day is used to initialize the seed stream. &lt;BR /&gt;
&lt;BR /&gt;
-Darryl</description>
    <pubDate>Tue, 13 May 2008 11:41:25 GMT</pubDate>
    <dc:creator>darrylovia</dc:creator>
    <dc:date>2008-05-13T11:41:25Z</dc:date>
    <item>
      <title>Please help</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Please-help/m-p/17495#M2541</link>
      <description>Hello,&lt;BR /&gt;
 PLEASE HELP !&lt;BR /&gt;
 &lt;BR /&gt;
There is my SAS code. The final result of this program is calculated estimates beta and gama in table IVERCIAI. For example table IVERCIAI:&lt;BR /&gt;
                 beta                            gama&lt;BR /&gt;
1        2.0772484231                2.2767078561&lt;BR /&gt;
&lt;BR /&gt;
Every time I run my program the beta and gama are different.I need to run my program for example &lt;BR /&gt;
 100 times and save all calculated beta and  gama. So my expecting table is somthing like this:&lt;BR /&gt;
&lt;BR /&gt;
                         beta                              gama&lt;BR /&gt;
1          2.0772484231              2.2767078561&lt;BR /&gt;
2          1.2578984466              3.8486468411&lt;BR /&gt;
3          0.5154116511              -1.515165116&lt;BR /&gt;
.               .                              .&lt;BR /&gt;
.               .                              .&lt;BR /&gt;
100   3.244864884            4.185161161&lt;BR /&gt;
&lt;BR /&gt;
In other words I have to put all my program in cycle (or macro program or somthing like this) and output all calculated beta and gama.  ( For  example i need  1000 beta and gama ) How can I do this ??? Do you have any ideas ?&lt;BR /&gt;
Please help &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;
Fanks.&lt;BR /&gt;
&lt;BR /&gt;
There is all my SAS code:&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
%LET n1=100;               &lt;BR /&gt;
%LET n2=100;               &lt;BR /&gt;
%LET n=&amp;amp;n1+&amp;amp;n2;            &lt;BR /&gt;
%LET b=2;                  &lt;BR /&gt;
%LET g=2;                  &lt;BR /&gt;
Data GENERAVIMAS1;              &lt;BR /&gt;
  DO i=1 TO &amp;amp;n1;          &lt;BR /&gt;
   W=UNIFORM(0);&lt;BR /&gt;
   T=(-1)*log(W);&lt;BR /&gt;
   C=RANEXP(1)*9;          &lt;BR /&gt;
   X=MIN(T,C);&lt;BR /&gt;
    IF T&amp;lt;=C THEN D=1;&lt;BR /&gt;
    ELSE D=0;&lt;BR /&gt;
    DROP W;&lt;BR /&gt;
   OUTPUT;&lt;BR /&gt;
  END;&lt;BR /&gt;
RUN;&lt;BR /&gt;
DATA GENERAVIMAS2;&lt;BR /&gt;
DO i=&amp;amp;n1+1 TO &amp;amp;n;  &lt;BR /&gt;
   W=uniform(0);           &lt;BR /&gt;
   T=exp(-&amp;amp;g)*((-exp(2*&amp;amp;g)*log(W))+log(exp(-&amp;amp;b-&amp;amp;g)*(1-W**exp(2*&amp;amp;g))+W**exp(2*&amp;amp;g)));&lt;BR /&gt;
   C=RANEXP(1)*61;        &lt;BR /&gt;
    X=min(T,C);&lt;BR /&gt;
    IF T&amp;lt;=C THEN D=1;&lt;BR /&gt;
    ELSE D=0;&lt;BR /&gt;
   DROP W  ; &lt;BR /&gt;
   OUTPUT;&lt;BR /&gt;
  END;&lt;BR /&gt;
RUN;&lt;BR /&gt;
DATA GENERAVIMAS;&lt;BR /&gt;
MERGE GENERAVIMAS1 GENERAVIMAS2; &lt;BR /&gt;
BY i;&lt;BR /&gt;
DROP i ;&lt;BR /&gt;
RUN;&lt;BR /&gt;
PROC SORT DATA=GENERAVIMAS OUT=GENERAVIMAS; &lt;BR /&gt;
BY T;&lt;BR /&gt;
WHERE D=1; &lt;BR /&gt;
RUN;&lt;BR /&gt;
DATA GENERAVIMAS1; &lt;BR /&gt;
SET GENERAVIMAS1;&lt;BR /&gt;
KEEP X;&lt;BR /&gt;
RUN;&lt;BR /&gt;
DATA GENERAVIMAS2;  &lt;BR /&gt;
SET GENERAVIMAS2;&lt;BR /&gt;
KEEP X;&lt;BR /&gt;
RUN;&lt;BR /&gt;
DATA GENERAVIMAS;  &lt;BR /&gt;
SET GENERAVIMAS;&lt;BR /&gt;
KEEP T;&lt;BR /&gt;
RUN;&lt;BR /&gt;
DATA Y1;          &lt;BR /&gt;
MERGE GENERAVIMAS1 GENERAVIMAS;&lt;BR /&gt;
RUN;&lt;BR /&gt;
DATA Y2;           &lt;BR /&gt;
MERGE GENERAVIMAS2 GENERAVIMAS;&lt;BR /&gt;
RUN;&lt;BR /&gt;
PROC SQL;              &lt;BR /&gt;
CREATE TABLE Y11 AS   &lt;BR /&gt;
SELECT a.X, a.T,(SELECT count(*) FROM Y1 b WHERE a.T &amp;lt;= b.X)AS Y1, (SELECT count(*) FROM Y1 b WHERE a.T = b.X)AS D1&lt;BR /&gt;
FROM Y1 a;&lt;BR /&gt;
QUIT;&lt;BR /&gt;
RUN;&lt;BR /&gt;
proc sql;            &lt;BR /&gt;
CREATE TABLE Y22 AS    &lt;BR /&gt;
SELECT a.X, a.T,(SELECT count(*) FROM Y2 b WHERE a.T &amp;lt;= b.X)AS Y2,(SELECT count(*) FROM Y2 b WHERE a.T = b.X)AS D2&lt;BR /&gt;
FROM Y2 a;&lt;BR /&gt;
QUIT;&lt;BR /&gt;
RUN;&lt;BR /&gt;
DATA Y11;              &lt;BR /&gt;
SET Y11;&lt;BR /&gt;
DROP X T;&lt;BR /&gt;
RUN;&lt;BR /&gt;
DATA Y22;              &lt;BR /&gt;
SET Y22;&lt;BR /&gt;
DROP X T;&lt;BR /&gt;
RUN&lt;BR /&gt;
DATA GALUTINE;        &lt;BR /&gt;
MERGE Y11 Y22;&lt;BR /&gt;
RUN;&lt;BR /&gt;
DATA GALUTINE;         &lt;BR /&gt;
SET GALUTINE;        &lt;BR /&gt;
Retain I 0;&lt;BR /&gt;
D=D1+D2;               &lt;BR /&gt;
I=I+1;&lt;BR /&gt;
RUN;&lt;BR /&gt;
PROC NLP DATA=GALUTINE OUTEST=NLP_duomenys;   &lt;BR /&gt;
MAX logar;&lt;BR /&gt;
PARMS beta, gama;     &lt;BR /&gt;
/*BOUNDS beta&amp;gt;-5,beta&amp;lt;5, gama&amp;gt;-5,gama&amp;lt;5;*/ &lt;BR /&gt;
RETAIN Lamda 0;                &lt;BR /&gt;
RETAIN S 0  ; &lt;BR /&gt;
IF I=1 THEN S=&amp;amp;n1+&amp;amp;n2*exp(beta);          &lt;BR /&gt;
Lamda=Lamda+D/S;&lt;BR /&gt;
G=exp(beta+Lamda*exp(gama))/(1+exp(beta+gama)*(exp(Lamda*exp(gama))-1));&lt;BR /&gt;
S=Y1+Y2*G;&lt;BR /&gt;
logar=D2*log(G)-D*log(S);&lt;BR /&gt;
RUN;&lt;BR /&gt;
DATA IVERCIAI;&lt;BR /&gt;
SET NLP_duomenys;&lt;BR /&gt;
IF _N_=10 THEN OUTPUT;&lt;BR /&gt;
KEEP BETA GAMA ;&lt;BR /&gt;
RUN;</description>
      <pubDate>Mon, 12 May 2008 21:09:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Please-help/m-p/17495#M2541</guid>
      <dc:creator>Please_help</dc:creator>
      <dc:date>2008-05-12T21:09:23Z</dc:date>
    </item>
    <item>
      <title>Re: Please help</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Please-help/m-p/17496#M2542</link>
      <description>&amp;gt; Hello,&lt;BR /&gt;
&amp;gt;  PLEASE HELP !&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt; There is my SAS code. The final result of this&lt;BR /&gt;
&amp;gt; program is calculated estimates beta and gama in&lt;BR /&gt;
&amp;gt; table IVERCIAI. For example table IVERCIAI:&lt;BR /&gt;
&amp;gt; beta&lt;BR /&gt;
&amp;gt;                            gama&lt;BR /&gt;
&amp;gt;           2.2767078561&lt;BR /&gt;
&amp;gt; me I run my program the beta and gama are different.I&lt;BR /&gt;
&amp;gt; need to run my program for example &lt;BR /&gt;
&amp;gt; 100 times and save all calculated beta and  gama. So&lt;BR /&gt;
&amp;gt;  my expecting table is somthing like this:&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt; beta&lt;BR /&gt;
&amp;gt;                              gama&lt;BR /&gt;
&amp;gt;         2.2767078561&lt;BR /&gt;
&amp;gt;    1.2578984466              3.8486468411&lt;BR /&gt;
&amp;gt;         0.5154116511              -1.515165116&lt;BR /&gt;
&amp;gt;         .                              .&lt;BR /&gt;
&amp;gt;         .                              .&lt;BR /&gt;
&amp;gt; 244864884            4.185161161&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt; In other words I have to put all my program in cycle&lt;BR /&gt;
&amp;gt; (or macro program or somthing like this) and output&lt;BR /&gt;
&amp;gt; all calculated beta and gama.  ( For  example i need&lt;BR /&gt;
&amp;gt; 1000 beta and gama ) How can I do this ??? Do you&lt;BR /&gt;
&amp;gt;  have any ideas ?&lt;BR /&gt;
&amp;gt; lease help &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;
&amp;gt; Fanks.&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt; There is all my SAS code:&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt; %LET n1=100;               &lt;BR /&gt;
&amp;gt; %LET n2=100;               &lt;BR /&gt;
&amp;gt; %LET n=&amp;amp;n1+&amp;amp;n2;            &lt;BR /&gt;
&amp;gt; %LET b=2;                  &lt;BR /&gt;
&amp;gt; %LET g=2;                  &lt;BR /&gt;
&amp;gt; Data GENERAVIMAS1;              &lt;BR /&gt;
&amp;gt;   DO i=1 TO &amp;amp;n1;          &lt;BR /&gt;
&amp;gt;  W=UNIFORM(0);&lt;BR /&gt;
&amp;gt;   T=(-1)*log(W);&lt;BR /&gt;
&amp;gt;  C=RANEXP(1)*9;          &lt;BR /&gt;
&amp;gt;   X=MIN(T,C);&lt;BR /&gt;
&amp;gt;   IF T&amp;lt;=C THEN D=1;&lt;BR /&gt;
&amp;gt;   ELSE D=0;&lt;BR /&gt;
&amp;gt;   DROP W;&lt;BR /&gt;
&amp;gt;  OUTPUT;&lt;BR /&gt;
&amp;gt;  END;&lt;BR /&gt;
&amp;gt; UN;&lt;BR /&gt;
&amp;gt; DATA GENERAVIMAS2;&lt;BR /&gt;
&amp;gt; DO i=&amp;amp;n1+1 TO &amp;amp;n;  &lt;BR /&gt;
&amp;gt;    W=uniform(0);           &lt;BR /&gt;
&amp;gt; T=exp(-&amp;amp;g)*((-exp(2*&amp;amp;g)*log(W))+log(exp(-&amp;amp;b-&amp;amp;g)*(1-W**&lt;BR /&gt;
&amp;gt; exp(2*&amp;amp;g))+W**exp(2*&amp;amp;g)));&lt;BR /&gt;
&amp;gt;    C=RANEXP(1)*61;        &lt;BR /&gt;
&amp;gt;  X=min(T,C);&lt;BR /&gt;
&amp;gt;    IF T&amp;lt;=C THEN D=1;&lt;BR /&gt;
&amp;gt;  ELSE D=0;&lt;BR /&gt;
&amp;gt;   DROP W  ; &lt;BR /&gt;
&amp;gt;  OUTPUT;&lt;BR /&gt;
&amp;gt;  END;&lt;BR /&gt;
&amp;gt; UN;&lt;BR /&gt;
&amp;gt; DATA GENERAVIMAS;&lt;BR /&gt;
&amp;gt; MERGE GENERAVIMAS1 GENERAVIMAS2; &lt;BR /&gt;
&amp;gt; BY i;&lt;BR /&gt;
&amp;gt; DROP i ;&lt;BR /&gt;
&amp;gt; RUN;&lt;BR /&gt;
&amp;gt; PROC SORT DATA=GENERAVIMAS OUT=GENERAVIMAS; &lt;BR /&gt;
&amp;gt; BY T;&lt;BR /&gt;
&amp;gt; WHERE D=1; &lt;BR /&gt;
&amp;gt; RUN;&lt;BR /&gt;
&amp;gt; DATA GENERAVIMAS1; &lt;BR /&gt;
&amp;gt; SET GENERAVIMAS1;&lt;BR /&gt;
&amp;gt; KEEP X;&lt;BR /&gt;
&amp;gt; RUN;&lt;BR /&gt;
&amp;gt; DATA GENERAVIMAS2;  &lt;BR /&gt;
&amp;gt; SET GENERAVIMAS2;&lt;BR /&gt;
&amp;gt; KEEP X;&lt;BR /&gt;
&amp;gt; RUN;&lt;BR /&gt;
&amp;gt; DATA GENERAVIMAS;  &lt;BR /&gt;
&amp;gt; SET GENERAVIMAS;&lt;BR /&gt;
&amp;gt; KEEP T;&lt;BR /&gt;
&amp;gt; RUN;&lt;BR /&gt;
&amp;gt; DATA Y1;          &lt;BR /&gt;
&amp;gt; MERGE GENERAVIMAS1 GENERAVIMAS;&lt;BR /&gt;
&amp;gt; RUN;&lt;BR /&gt;
&amp;gt; DATA Y2;           &lt;BR /&gt;
&amp;gt; MERGE GENERAVIMAS2 GENERAVIMAS;&lt;BR /&gt;
&amp;gt; RUN;&lt;BR /&gt;
&amp;gt; PROC SQL;              &lt;BR /&gt;
&amp;gt; CREATE TABLE Y11 AS   &lt;BR /&gt;
&amp;gt; SELECT a.X, a.T,(SELECT count(*) FROM Y1 b WHERE a.T&lt;BR /&gt;
&amp;gt; &amp;lt;= b.X)AS Y1, (SELECT count(*) FROM Y1 b WHERE a.T =&lt;BR /&gt;
&amp;gt; b.X)AS D1&lt;BR /&gt;
&amp;gt; FROM Y1 a;&lt;BR /&gt;
&amp;gt; QUIT;&lt;BR /&gt;
&amp;gt; RUN;&lt;BR /&gt;
&amp;gt; proc sql;            &lt;BR /&gt;
&amp;gt; CREATE TABLE Y22 AS    &lt;BR /&gt;
&amp;gt; SELECT a.X, a.T,(SELECT count(*) FROM Y2 b WHERE a.T&lt;BR /&gt;
&amp;gt; &amp;lt;= b.X)AS Y2,(SELECT count(*) FROM Y2 b WHERE a.T =&lt;BR /&gt;
&amp;gt; b.X)AS D2&lt;BR /&gt;
&amp;gt; FROM Y2 a;&lt;BR /&gt;
&amp;gt; QUIT;&lt;BR /&gt;
&amp;gt; RUN;&lt;BR /&gt;
&amp;gt; DATA Y11;              &lt;BR /&gt;
&amp;gt; SET Y11;&lt;BR /&gt;
&amp;gt; DROP X T;&lt;BR /&gt;
&amp;gt; RUN;&lt;BR /&gt;
&amp;gt; DATA Y22;              &lt;BR /&gt;
&amp;gt; SET Y22;&lt;BR /&gt;
&amp;gt; DROP X T;&lt;BR /&gt;
&amp;gt; RUN&lt;BR /&gt;
&amp;gt; DATA GALUTINE;        &lt;BR /&gt;
&amp;gt; MERGE Y11 Y22;&lt;BR /&gt;
&amp;gt; RUN;&lt;BR /&gt;
&amp;gt; DATA GALUTINE;         &lt;BR /&gt;
&amp;gt; SET GALUTINE;        &lt;BR /&gt;
&amp;gt; Retain I 0;&lt;BR /&gt;
&amp;gt; D=D1+D2;               &lt;BR /&gt;
&amp;gt; I=I+1;&lt;BR /&gt;
&amp;gt; RUN;&lt;BR /&gt;
&amp;gt; PROC NLP DATA=GALUTINE OUTEST=NLP_duomenys;   &lt;BR /&gt;
&amp;gt; MAX logar;&lt;BR /&gt;
&amp;gt; PARMS beta, gama;     &lt;BR /&gt;
&amp;gt; /*BOUNDS beta&amp;gt;-5,beta&amp;lt;5, gama&amp;gt;-5,gama&amp;lt;5;*/ &lt;BR /&gt;
&amp;gt; RETAIN Lamda 0;                &lt;BR /&gt;
&amp;gt; RETAIN S 0  ; &lt;BR /&gt;
&amp;gt; IF I=1 THEN S=&amp;amp;n1+&amp;amp;n2*exp(beta);          &lt;BR /&gt;
&amp;gt; Lamda=Lamda+D/S;&lt;BR /&gt;
&amp;gt; G=exp(beta+Lamda*exp(gama))/(1+exp(beta+gama)*(exp(Lam&lt;BR /&gt;
&amp;gt; da*exp(gama))-1));&lt;BR /&gt;
&amp;gt; S=Y1+Y2*G;&lt;BR /&gt;
&amp;gt; logar=D2*log(G)-D*log(S);&lt;BR /&gt;
&amp;gt; RUN;&lt;BR /&gt;
&amp;gt; DATA IVERCIAI;&lt;BR /&gt;
&amp;gt; SET NLP_duomenys;&lt;BR /&gt;
&amp;gt; IF _N_=10 THEN OUTPUT;&lt;BR /&gt;
&amp;gt; KEEP BETA GAMA ;&lt;BR /&gt;
&amp;gt; RUN;</description>
      <pubDate>Mon, 12 May 2008 21:15:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Please-help/m-p/17496#M2542</guid>
      <dc:creator>Please_help</dc:creator>
      <dc:date>2008-05-12T21:15:02Z</dc:date>
    </item>
    <item>
      <title>Re: Please help</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Please-help/m-p/17497#M2543</link>
      <description>Hello Back&lt;BR /&gt;
&lt;BR /&gt;
When you use a seed value of 0, SAS uses the time of day as the seed.  &lt;BR /&gt;
&lt;BR /&gt;
i.e your code W=UNIFORM(0);&lt;BR /&gt;
&lt;BR /&gt;
So that is why when you run this you are getting different results.  If you want the same results when using a random number generator use a fixed seed value.&lt;BR /&gt;
&lt;BR /&gt;
From the SAS documentation: &lt;A href="http://support.sas.com/onlinedoc/913/docMainpage.jsp" target="_blank"&gt;http://support.sas.com/onlinedoc/913/docMainpage.jsp&lt;/A&gt;&lt;BR /&gt;
Note: If seed  0, the time of day is used to initialize the seed stream. &lt;BR /&gt;
&lt;BR /&gt;
-Darryl</description>
      <pubDate>Tue, 13 May 2008 11:40:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Please-help/m-p/17497#M2543</guid>
      <dc:creator>darrylovia</dc:creator>
      <dc:date>2008-05-13T11:40:51Z</dc:date>
    </item>
    <item>
      <title>Re: Please help</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Please-help/m-p/17498#M2544</link>
      <description>When you use a seed value of 0, SAS uses the time of day as the seed.  &lt;BR /&gt;
&lt;BR /&gt;
i.e your code W=UNIFORM(0);&lt;BR /&gt;
&lt;BR /&gt;
So that is why when you run this you are getting different results.  If you want the same results when using a random number generator use a fixed seed value.&lt;BR /&gt;
&lt;BR /&gt;
From the SAS documentation: &lt;A href="http://support.sas.com/onlinedoc/913/docMainpage.jsp" target="_blank"&gt;http://support.sas.com/onlinedoc/913/docMainpage.jsp&lt;/A&gt;&lt;BR /&gt;
Functions/UNIFORM&lt;BR /&gt;
Note: If seed  0, the time of day is used to initialize the seed stream. &lt;BR /&gt;
&lt;BR /&gt;
-Darryl</description>
      <pubDate>Tue, 13 May 2008 11:41:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Please-help/m-p/17498#M2544</guid>
      <dc:creator>darrylovia</dc:creator>
      <dc:date>2008-05-13T11:41:25Z</dc:date>
    </item>
    <item>
      <title>Re: Please help</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Please-help/m-p/17499#M2545</link>
      <description>1)  There are some opportunities in your code for some improved efficiency, that is not what you are asking.&lt;BR /&gt;
&lt;BR /&gt;
2)  Yes, you will need to wrap this inside a macro&lt;BR /&gt;
[pre]&lt;BR /&gt;
%macro calc_beta_and_gama;&lt;BR /&gt;
...&lt;BR /&gt;
%mend calc_beta_and_gama;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
Use another macro to loop the call multiple times:&lt;BR /&gt;
[pre]&lt;BR /&gt;
%macro loop&lt;BR /&gt;
  %do i=1 to 1000;&lt;BR /&gt;
    %calc_beta_and_gama;&lt;BR /&gt;
    data accumulate;&lt;BR /&gt;
      set accumulate iverciai;&lt;BR /&gt;
    run;&lt;BR /&gt;
  %end;&lt;BR /&gt;
%mend;&lt;BR /&gt;
[/pre]

Message was edited by: Chuck</description>
      <pubDate>Tue, 13 May 2008 12:15:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Please-help/m-p/17499#M2545</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-05-13T12:15:50Z</dc:date>
    </item>
  </channel>
</rss>

