<?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: Help with macro - nested %if %then in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Help-with-macro-nested-if-then/m-p/481212#M71598</link>
    <description>&lt;P&gt;Are you working with ODS LAYOUT ABSOLUTE or ODS LAYOUT GRIDDED?&lt;/P&gt;
&lt;P&gt;Perhaps this bit from the documentation of LAYOUT ABSOLUTE may apply:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;Absolute layout is restricted to a single page. If the output is too large to fit in the fixed-size container, the output is discarded. You receive a blank region and a warning in your log. Absolute layout is perfectly suited for static types of output.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If your table doesn't appear in the output perhaps it is attempting to exceed a "single page" in your overall document relative to where it starts or ends.&lt;/P&gt;</description>
    <pubDate>Wed, 25 Jul 2018 18:11:17 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2018-07-25T18:11:17Z</dc:date>
    <item>
      <title>Help with macro - nested %if %then</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Help-with-macro-nested-if-then/m-p/481156#M71583</link>
      <description>&lt;P&gt;Morning,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope I am posting this in the right section. I am using ods pdf to generate a report and want to conditionally execute some proc report statements based on macro variables. I have wrapped the proc reports in a macro and am using %if %then %else to direct the printing.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The issue I am running into is that my last %else condition is not executing in the output. The log shows that the macro logic worked as it should but the actual PDF file is missing the table that was supposed to print.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have included the below code (with comments - hopefully it is clear) and log:&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;%macro grpprint / mindelimiter=',';

%*For Standard or Data request types include value of &amp;amp;groupdefine as an ods text line,
	further, print either grpstdcdrcp2 or grpstdcts table depending on the &amp;amp;groupdefine value;
%if &amp;amp;reqapp in (Standard,Data) %then %do;
ods region x = 0.50 in
	   y = 1.50 in;
ods text = "^{style[font_face='arial' fontsize=10pt]Participants grouped by: &amp;amp;groupdefine}";

	%*if Standard or Data request type and &amp;amp;groupdefine is one of two values below, print grpstdcdrcp2;
	%if &amp;amp;groupdefine in (Final Clinical Diagnosis,Pathological Diagnosis) %then %do;
	options linesize=256;
	ods region x = 0.50 in
		   y = 1.75 in
		   width = 7.25 in; 

	proc report data=grpstdcdrcp2 nowd style={just=l};
	column ptcdxcat1 ptcdxnum1 ptcgold ptcnumpt1 ptcinex1;
		define ptcdxcat1 / display 'Dx category'
		style(column)={cellwidth=1.20in};

		define ptcdxnum1 / display 'Dx numbers (click for labels)'
		style(header)={url="&amp;amp;dxlink" color=blue textdecoration=underline}
		style(column)={cellwidth=1.20in};

		define ptcgold / display 'GOLD stage'
		style(column)={cellwidth=1.20in};

		define ptcnumpt1 / display 'Participants required'
		style(column)={cellwidth=1.20in};

		define ptcinex1 / display "Other inclusion &amp;amp; exclusion"
		style(column)={cellwidth=2.00in};
	run;
	%end;

	%*otherwise if Standard or Data request type and &amp;amp;groupdefine is value below, print grpstdcts;
	%else %if &amp;amp;groupdefine = Radiological Diagnosis %then %do;
	options linesize=256;
	ods region x = 0.50 in
		   y = 1.75 in
		   width = 7.25 in; 
	proc report data=grpstdcts nowd style={just=l};
	column ptcdxnum2 ptcnumpt2 ptcinex2;
		define ptcdxnum2 / display 'Dx numbers (click for labels)'
		style(header)={url="&amp;amp;dxlink" color=blue textdecoration=underline}
		style(column)={cellwidth=1.25in};
		define ptcnumpt2 / display 'Participants required'
		style(column)={cellwidth=1.25in};
		define ptcinex2 / display 'Other inclusion/exclusion'
		style(column)={cellwidth=2.00in};
	run;
	%end;
%end;

%*otherwise if Express request type, do not execute the above and instead print the grpexp table;
%else %if &amp;amp;reqapp=Express %then %do;
options linesize=256;
ods region x = 0.50 in
	   y = 1.50 in
	   width = 7.25 in; 

proc report data=grpexp nowd style={just=l};
column ptcdisgrp ptcdissev ptcnumpt3;
	define ptcdisgrp / display 'Disease group'
	style(column)={cellwidth=1.25in};

	define ptcdissev / display 'Disease severity'
	style(column)={cellwidth=1.25in};

	define ptcnumpt3 / display 'Participants required'
	style(column)={cellwidth=1.25in};

run;
%end;
%mend grpprint;
%grpprint;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Log:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;2988  %macro grpprint / mindelimiter=',';
2989
2990  %*For Standard or Data request types include value of &amp;amp;groupdefine as an ods text line,
2991      further, print either grpstdcdrcp2 or grpstdcts table depending on the &amp;amp;groupdefine value;
2992  %if &amp;amp;reqapp in (Standard,Data) %then %do;
2993  ods region x = 0.50 in
2994             y = 1.50 in;
2995  ods text = "^{style[font_face='arial' fontsize=10pt]Participants grouped by: &amp;amp;groupdefine}";
2996
2997      %*if Standard or Data request type and &amp;amp;groupdefine is one of two values below, print grpstdcdrcp2;
2998      %if &amp;amp;groupdefine in (Final Clinical Diagnosis,Pathological Diagnosis) %then %do;
2999      options linesize=256;
3000      ods region x = 0.50 in
3001                 y = 1.75 in
3002                 width = 7.25 in;
3003
3004      proc report data=grpstdcdrcp2 nowd style={just=l};
3005      column ptcdxcat1 ptcdxnum1 ptcgold ptcnumpt1 ptcinex1;
3006          define ptcdxcat1 / display 'Dx category'
3007          style(column)={cellwidth=1.20in};
3008
3009          define ptcdxnum1 / display 'Dx numbers (click for labels)'
3010          style(header)={url="&amp;amp;dxlink" color=blue textdecoration=underline}
3011          style(column)={cellwidth=1.20in};
3012
3013          define ptcgold / display 'GOLD stage'
3014          style(column)={cellwidth=1.20in};
3015
3016          define ptcnumpt1 / display 'Participants required'
3017          style(column)={cellwidth=1.20in};
3018
3019          define ptcinex1 / display "Other inclusion &amp;amp; exclusion"
3020          style(column)={cellwidth=2.00in};
3021      run;
3022      %end;
3023
3024      %*otherwise if Standard or Data request type and &amp;amp;groupdefine is value below, print grpstdcts;
3025      %else %if &amp;amp;groupdefine = Radiological Diagnosis %then %do;
3026      options linesize=256;
3027      ods region x = 0.50 in
3028                 y = 1.75 in
3029                 width = 7.25 in;
3030      proc report data=grpstdcts nowd style={just=l};
3031      column ptcdxnum2 ptcnumpt2 ptcinex2;
3032          define ptcdxnum2 / display 'Dx numbers (click for labels)'
3033          style(header)={url="&amp;amp;dxlink" color=blue textdecoration=underline}
3034          style(column)={cellwidth=1.25in};
3035          define ptcnumpt2 / display 'Participants required'
3036          style(column)={cellwidth=1.25in};
3037          define ptcinex2 / display 'Other inclusion/exclusion'
3038          style(column)={cellwidth=2.00in};
3039      run;
3040      %end;
3041  %end;
3042
3043  %*otherwise if Express request type, do not execute the above and instead print the grpexp table;
3044  %else %if &amp;amp;reqapp=Express %then %do;
3045  options linesize=256;
3046  ods region x = 0.50 in
3047             y = 1.50 in
3048             width = 7.25 in;
3049
3050  proc report data=grpexp nowd style={just=l};
3051  column ptcdisgrp ptcdissev ptcnumpt3;
3052      define ptcdisgrp / display 'Disease group'
3053      style(column)={cellwidth=1.25in};
3054
3055      define ptcdissev / display 'Disease severity'
3056      style(column)={cellwidth=1.25in};
3057
3058      define ptcnumpt3 / display 'Participants required'
3059      style(column)={cellwidth=1.25in};
3060
3061  run;
3062  %end;
3063  %mend grpprint;
3064  %grpprint;
MLOGIC(GRPPRINT):  Beginning execution.
SYMBOLGEN:  Macro variable REQAPP resolves to Express
MLOGIC(GRPPRINT):  %IF condition &amp;amp;reqapp in (Standard,Data) is FALSE
SYMBOLGEN:  Macro variable REQAPP resolves to Express
MLOGIC(GRPPRINT):  %IF condition &amp;amp;reqapp=Express is TRUE
MPRINT(GRPPRINT):   options linesize=256;
MPRINT(GRPPRINT):   ods region x = 0.50 in y = 1.50 in width = 7.25 in;
MPRINT(GRPPRINT):   proc report data=grpexp nowd style={just=l};
MPRINT(GRPPRINT):   column ptcdisgrp ptcdissev ptcnumpt3;
MPRINT(GRPPRINT):   define ptcdisgrp / display 'Disease group' style(column)={cellwidth=1.25in};
MPRINT(GRPPRINT):   define ptcdissev / display 'Disease severity' style(column)={cellwidth=1.25in};
MPRINT(GRPPRINT):   define ptcnumpt3 / display 'Participants required' style(column)={cellwidth=1.25in};
MPRINT(GRPPRINT):   run;
NOTE: There were 2 observations read from the data set WORK.GRPEXP.
NOTE: PROCEDURE REPORT used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds


MLOGIC(GRPPRINT):  Ending execution.
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The macro debug code in the log at line 3064 seems to indicate that the value of &amp;amp;reqapp resolved to Express and that my %if &amp;amp;reqapp=Express is TRUE. I then see that the proc report read 2 observations; however, as mentioned above, the output PDF file does not contain the results of the proc report. I have tested the hard code and run the macro with &amp;amp;reqapp evaluated as Standard or Data and everything works perfectly. I have also tried&amp;nbsp;isolating the 'Express' portion within the grpprint macro and it works fine, e.g.:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
%macro grpprint / mindelimiter=',';

%*if Express request type, print the grpexp table;
%if &amp;amp;reqapp=Express %then %do;
options linesize=256;
ods region x = 0.50 in
	   y = 1.50 in
	   width = 7.25 in; 

proc report data=grpexp nowd style={just=l};
column ptcdisgrp ptcdissev ptcnumpt3;
	define ptcdisgrp / display 'Disease group'
	style(column)={cellwidth=1.25in};

	define ptcdissev / display 'Disease severity'
	style(column)={cellwidth=1.25in};

	define ptcnumpt3 / display 'Participants required'
	style(column)={cellwidth=1.25in};

run;
%end;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Is there something wrong with my %if %do %else logic? Am I trying to do too much within one macro?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Lucas&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Jul 2018 15:26:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Help-with-macro-nested-if-then/m-p/481156#M71583</guid>
      <dc:creator>lbarwick</dc:creator>
      <dc:date>2018-07-25T15:26:26Z</dc:date>
    </item>
    <item>
      <title>Re: Help with macro - nested %if %then</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Help-with-macro-nested-if-then/m-p/481160#M71585</link>
      <description>I don't see an 'ods pdf' to begin or a 'ods pdf close' at the end.  &lt;BR /&gt;&lt;BR /&gt;I'd suggest getting rid of as much junk as you can to test that at least one record goes out to the pdf and then you can add all the rest of the junk back in.</description>
      <pubDate>Wed, 25 Jul 2018 15:38:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Help-with-macro-nested-if-then/m-p/481160#M71585</guid>
      <dc:creator>tomrvincent</dc:creator>
      <dc:date>2018-07-25T15:38:36Z</dc:date>
    </item>
    <item>
      <title>Re: Help with macro - nested %if %then</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Help-with-macro-nested-if-then/m-p/481162#M71586</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sorry - the ods pdf and close statements were not included in the test code, I have multiple other macros within those and didn't want to include everything. I suppose I should've just included to abbreviate my example.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I mentioned at the end that I did try just the last proc report and it worked fine, it seems the parent %if are preventing the last %if from printing. I will try to do some more testing.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Jul 2018 15:41:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Help-with-macro-nested-if-then/m-p/481162#M71586</guid>
      <dc:creator>lbarwick</dc:creator>
      <dc:date>2018-07-25T15:41:27Z</dc:date>
    </item>
    <item>
      <title>Re: Help with macro - nested %if %then</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Help-with-macro-nested-if-then/m-p/481166#M71587</link>
      <description>Another suggestion is to have the express code in a separate macro...isolating it might make it easier to test.</description>
      <pubDate>Wed, 25 Jul 2018 15:45:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Help-with-macro-nested-if-then/m-p/481166#M71587</guid>
      <dc:creator>tomrvincent</dc:creator>
      <dc:date>2018-07-25T15:45:58Z</dc:date>
    </item>
    <item>
      <title>Re: Help with macro - nested %if %then</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Help-with-macro-nested-if-then/m-p/481176#M71588</link>
      <description>&lt;P&gt;You also have a number of macro variables that we do not see any setting code for. Since you say this stuff is nested then perhaps you are getting a timing issue of values of macro variables &amp;amp;reqapp or &amp;amp;groupdefine&amp;nbsp;used in your %if and when the macro executes.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ODS Region could have another issue if your output won't actually fit into the given sizes. I'm not sure what region height would be used with the dimensions you provide and that might be an issue with ODS Layout settings scattered between multiple macros.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Jul 2018 16:42:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Help-with-macro-nested-if-then/m-p/481176#M71588</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-07-25T16:42:49Z</dc:date>
    </item>
    <item>
      <title>Re: Help with macro - nested %if %then</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Help-with-macro-nested-if-then/m-p/481177#M71589</link>
      <description>&lt;P&gt;You either closed the PDF destination before running that macro.&lt;/P&gt;
&lt;P&gt;Or you haven't yet closed the PDF destination and you are trying to look at an incomplete or old version of the file?&lt;/P&gt;</description>
      <pubDate>Wed, 25 Jul 2018 16:45:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Help-with-macro-nested-if-then/m-p/481177#M71589</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2018-07-25T16:45:34Z</dc:date>
    </item>
    <item>
      <title>Re: Help with macro - nested %if %then</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Help-with-macro-nested-if-then/m-p/481179#M71591</link>
      <description>The macro variables are global and set before the ods pdf step even begins. The region settings are fine as I have tested the Express portion of the problematic macro by itself and the table prints just fine.</description>
      <pubDate>Wed, 25 Jul 2018 16:47:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Help-with-macro-nested-if-then/m-p/481179#M71591</guid>
      <dc:creator>lbarwick</dc:creator>
      <dc:date>2018-07-25T16:47:52Z</dc:date>
    </item>
    <item>
      <title>Re: Help with macro - nested %if %then</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Help-with-macro-nested-if-then/m-p/481186#M71593</link>
      <description>&lt;P&gt;I only have one pdf close statement at the end and I run the whole ods pdf code each time I test. I check timestamp of output file before opening. There are no errors/warnings in log.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I tried removing the Express portion and inserting it into it's own macro and I get the same result.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Jul 2018 16:57:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Help-with-macro-nested-if-then/m-p/481186#M71593</guid>
      <dc:creator>lbarwick</dc:creator>
      <dc:date>2018-07-25T16:57:32Z</dc:date>
    </item>
    <item>
      <title>Re: Help with macro - nested %if %then</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Help-with-macro-nested-if-then/m-p/481205#M71597</link>
      <description>&lt;P&gt;Something interesting I just discovered - immediately preceding %grpprint macro, I have some non-macrotized ods layout code that configures a page (we'll call it 'Resource Utilization') with&amp;nbsp;four ods text lines (for header, footer, and a table header). That code is below:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;*Resource Utilization page;
ods layout start width=8.49in
height=10.99in;

*header;
ods region x = &amp;amp;headerx in
		   y = 0.40 in;
ods text = "^{style[font_face='arial' fontsize=20pt
			just=l fontweight=bold] Lung Tissue Research Consortium}"; 

ods region x = 0.53 in
		   y = 0.75 in;
ods text = "^{style[font_face='arial' fontsize=16pt
			just=l fontweight=bold] Investigator Request for Materials}"; 

ods region x = &amp;amp;headerx in
		   y = 0.95 in;
ods text="__________________________________________________________________________________________________________"; 
*end header;

*footer;
ods region x = 0.50 in
		   y = 10.50 in; 
ods text = "^{style[font_face='arial' fontsize=9pt just=left fontstyle=italic]&amp;amp;reqfooter}"; 

ods region x = 0.50 in
		   y = 10.50 in; 
ods text = "^{style[font_face='arial' fontsize=9pt just=center fontstyle=italic]Page  ^{thispage} of  ^{lastpage}}"; 

ods region x = 0.50 in
		   y = 10.50 in
		   width = 7.25 in;
ods text = "^{style[font_face='arial' fontsize=9pt just=right fontstyle=italic]Contract Number: HHSN268201600002I}"; 
*end footer;

ods region x = 0.50 in
		   y = 1.25 in;
ods text = "^{style[font_face='arial' fontsize=12pt textdecoration=underline font_weight=bold]Funding}";

ods layout end;
*end resource utilization page;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Now, if I cut/paste this Resource Utilization portion of code (from ods layout start through ods layout end;) and insert it above another ods layout block, the output fails to print the ods layout that now follows the Resource Utilization ods layout portion. The output&amp;nbsp;&lt;EM&gt;will &lt;/EM&gt;contain the ods layout portions that follow the portion that doesn't print. So it seems as if the portion immediately following the Resource Utilization is being skipped in the output.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As far as I can tell the Resource Utilization ods layout code is identical in syntax/structure as all the other ods layout portions of my ods pdf code.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Jul 2018 17:36:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Help-with-macro-nested-if-then/m-p/481205#M71597</guid>
      <dc:creator>lbarwick</dc:creator>
      <dc:date>2018-07-25T17:36:26Z</dc:date>
    </item>
    <item>
      <title>Re: Help with macro - nested %if %then</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Help-with-macro-nested-if-then/m-p/481212#M71598</link>
      <description>&lt;P&gt;Are you working with ODS LAYOUT ABSOLUTE or ODS LAYOUT GRIDDED?&lt;/P&gt;
&lt;P&gt;Perhaps this bit from the documentation of LAYOUT ABSOLUTE may apply:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;Absolute layout is restricted to a single page. If the output is too large to fit in the fixed-size container, the output is discarded. You receive a blank region and a warning in your log. Absolute layout is perfectly suited for static types of output.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If your table doesn't appear in the output perhaps it is attempting to exceed a "single page" in your overall document relative to where it starts or ends.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Jul 2018 18:11:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Help-with-macro-nested-if-then/m-p/481212#M71598</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-07-25T18:11:17Z</dc:date>
    </item>
    <item>
      <title>Re: Help with macro - nested %if %then</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Help-with-macro-nested-if-then/m-p/481217#M71599</link>
      <description>I am using absolute. The output fits on one page and I have confirmed this by tweaking various bits to run pieces separately and verifying what the output looks like in the final PDF output. Additionally, I am receiving no errors or warnings.</description>
      <pubDate>Wed, 25 Jul 2018 18:24:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Help-with-macro-nested-if-then/m-p/481217#M71599</guid>
      <dc:creator>lbarwick</dc:creator>
      <dc:date>2018-07-25T18:24:02Z</dc:date>
    </item>
    <item>
      <title>Re: Help with macro - nested %if %then</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Help-with-macro-nested-if-then/m-p/481888#M71624</link>
      <description>&lt;P&gt;So I've been using 9.3 (current standard w/in my organization), and learned ODS Layout was production in 9.4. I just&amp;nbsp;tested my code in 9.4, and after making a couple tweaks to accommodate the updated software everything is working just as it should. Glad it seems like a pre-production issue and nothing wrong with my code.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Jul 2018 15:05:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Help-with-macro-nested-if-then/m-p/481888#M71624</guid>
      <dc:creator>lbarwick</dc:creator>
      <dc:date>2018-07-27T15:05:09Z</dc:date>
    </item>
  </channel>
</rss>

