<?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: Overlay of lines in PROC TABULATE in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Overlay-of-lines-in-PROC-TABULATE/m-p/779306#M81190</link>
    <description>&lt;P&gt;Can you post some data to replicate your problem. so we can test it .&lt;/P&gt;
&lt;P&gt;Or&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13549"&gt;@Cynthia_sas&lt;/a&gt;&amp;nbsp;know the solution .&lt;/P&gt;</description>
    <pubDate>Tue, 09 Nov 2021 12:05:57 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2021-11-09T12:05:57Z</dc:date>
    <item>
      <title>Overlay of lines in PROC TABULATE</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Overlay-of-lines-in-PROC-TABULATE/m-p/778949#M81180</link>
      <description>&lt;P&gt;I am getting the overlay of lines in PROC TABULATE (see output 'example.pdf'). I am producing 57 PDF files with each generating 21 PROC TABULATE tables. Some PDF reports can run to over 270 pages. I had this issue with one set of tables, but corrected it by changing the number of footnotes. The example below occurs on the last page of a table. There is plenty of room for the table. Any ideas of how to correct this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the SAS code:&lt;/P&gt;&lt;P&gt;ods listing close;&lt;/P&gt;&lt;P&gt;options orientation = landscape nodate;&lt;/P&gt;&lt;P&gt;ods pdf file = "&amp;amp;drive\&amp;amp;dir\program output\20&amp;amp;yr5.-&amp;amp;yr6.\&amp;amp;currnum._fall&amp;amp;yr6.progprofilex.pdf"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; STYLE=festival pdftoc=&lt;STRONG&gt;1&lt;/STRONG&gt; uniform;&lt;/P&gt;&lt;P&gt;ods escapechar='~';&lt;/P&gt;&lt;P&gt;options nonumber printerpath=pdf;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;footnote1 j=l height=&lt;STRONG&gt;3&lt;/STRONG&gt; 'CONFIDENTIALITY NOTICE: Data presented in this table are for the sole use of the ---- department responsible for the above curriculum and may';&lt;/P&gt;&lt;P&gt;footnote2 j=l height=&lt;STRONG&gt;3&lt;/STRONG&gt; 'contain confidential and privileged information. Any access, use, disclosure, or distribution of these data for purposes other than program';&lt;/P&gt;&lt;P&gt;footnote3 j=l height=&lt;STRONG&gt;3&lt;/STRONG&gt; 'review and analysis is unauthorized and prohibited.';&lt;/P&gt;&lt;P&gt;footnote4;&lt;/P&gt;&lt;P&gt;footnote5;&lt;/P&gt;&lt;P&gt;footnote6 j=left bold "Curriculum &amp;amp;currnum / Page ~{thispage} of ~{lastpage}"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; j=center bold "Office of ---------------------------"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; j=right&amp;nbsp; bold "&amp;amp;sysdate";.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods proclabel="Table 16: First-Time-In-College (FTIC) Cohort Disaggregated Demographics";&lt;/P&gt;&lt;P&gt;proc tabulate data = zfive_yr_ftic missing style=[font_size=&lt;STRONG&gt;4&lt;/STRONG&gt;];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; where curr = "&amp;amp;currnum";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; class year fp_code home_campus gender new_race acadplan;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; classlev year / style=[font_size=&lt;STRONG&gt;4&lt;/STRONG&gt;];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; classlev fp_code / style=[font_size=&lt;STRONG&gt;4&lt;/STRONG&gt;];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; classlev home_campus / style=[font_size=&lt;STRONG&gt;4&lt;/STRONG&gt;];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; classlev gender / style=[font_size=&lt;STRONG&gt;4&lt;/STRONG&gt;];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; classlev new_race / style=[font_size=&lt;STRONG&gt;4&lt;/STRONG&gt;];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; classlev acadplan / style=[font_size=&lt;STRONG&gt;4&lt;/STRONG&gt;];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var count1 / style=[font_size=&lt;STRONG&gt;4&lt;/STRONG&gt;];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var wgt / style=[font_size=&lt;STRONG&gt;4&lt;/STRONG&gt;];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; format gender $gender. new_race $racex. home_campus $home_campus. fp_code $fp_code. acadplan $acadplandeg.;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; table acadplan='' *(fp_code='FP' home_campus='CAMPUS' gender='GENDER' new_race='RACE')&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; all='Total'*(fp_code='FP' home_campus='CAMPUS' gender='GENDER' new_race='RACE'),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; year=''*(wgt=''*(sum='N'*f=comma8.0 pctsum&amp;lt;fp_code home_campus gender new_race &amp;gt;='%'*f = &lt;STRONG&gt;5.1&lt;/STRONG&gt;))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; / box=[label='Academic Plan'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style=[background=beige&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; foreground=black&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;font_size=&lt;STRONG&gt;4&lt;/STRONG&gt;]]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style=[cellspacing=&lt;STRONG&gt;5&lt;/STRONG&gt;]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; printmiss misstext='0';&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; title3 'Table 16: First-Time-In-College (FTIC) Cohort Disaggregated Demographics';&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 06 Nov 2021 22:27:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Overlay-of-lines-in-PROC-TABULATE/m-p/778949#M81180</guid>
      <dc:creator>Jima</dc:creator>
      <dc:date>2021-11-06T22:27:22Z</dc:date>
    </item>
    <item>
      <title>Re: Overlay of lines in PROC TABULATE</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Overlay-of-lines-in-PROC-TABULATE/m-p/778962#M81181</link>
      <description>I am not sure. But could try style outputwidth=100%&lt;BR /&gt;&lt;BR /&gt;table ............./       style=[cellspacing=5 outputwidth=100% ]   .....</description>
      <pubDate>Sun, 07 Nov 2021 03:38:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Overlay-of-lines-in-PROC-TABULATE/m-p/778962#M81181</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-11-07T03:38:11Z</dc:date>
    </item>
    <item>
      <title>Re: Overlay of lines in PROC TABULATE</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Overlay-of-lines-in-PROC-TABULATE/m-p/778963#M81182</link>
      <description>I am not sure. But could try style outputwidth=100%&lt;BR /&gt;&lt;BR /&gt;table ............./       style=[cellspacing=5 outputwidth=100% ]   .....</description>
      <pubDate>Sun, 07 Nov 2021 03:38:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Overlay-of-lines-in-PROC-TABULATE/m-p/778963#M81182</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-11-07T03:38:30Z</dc:date>
    </item>
    <item>
      <title>Re: Overlay of lines in PROC TABULATE</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Overlay-of-lines-in-PROC-TABULATE/m-p/779135#M81188</link>
      <description>&lt;P&gt;Ksharp, thanks for the reply. I tried your suggestion, but it didn't do the trick.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Nov 2021 14:47:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Overlay-of-lines-in-PROC-TABULATE/m-p/779135#M81188</guid>
      <dc:creator>Jima</dc:creator>
      <dc:date>2021-11-08T14:47:37Z</dc:date>
    </item>
    <item>
      <title>Re: Overlay of lines in PROC TABULATE</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Overlay-of-lines-in-PROC-TABULATE/m-p/779306#M81190</link>
      <description>&lt;P&gt;Can you post some data to replicate your problem. so we can test it .&lt;/P&gt;
&lt;P&gt;Or&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13549"&gt;@Cynthia_sas&lt;/a&gt;&amp;nbsp;know the solution .&lt;/P&gt;</description>
      <pubDate>Tue, 09 Nov 2021 12:05:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Overlay-of-lines-in-PROC-TABULATE/m-p/779306#M81190</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-11-09T12:05:57Z</dc:date>
    </item>
    <item>
      <title>Re: Overlay of lines in PROC TABULATE</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Overlay-of-lines-in-PROC-TABULATE/m-p/779348#M81191</link>
      <description>&lt;P&gt;I am running 9.4M6. This might be a pagenation issue with ODS. If I output 'rtf' instead of 'pdf', the pagenation is different and everything looks ok.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I had this issue with another table in this job stream. There was an overlay on ever other page. I eliminated this by changing the the number of lines of footnotes so row elements would not span over a page.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The 'Total' category for 'Race' begins on the previous page with rows for a heading and the first value of 'Race'. The page I showed is a continuation of the 'Total' section.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, if I make changes to the PROC TABULATE statement - for example, remove the FORMAT line - the pagenation is different and the PDF output looks ok.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have attached a sample dataset.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Nov 2021 14:46:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Overlay-of-lines-in-PROC-TABULATE/m-p/779348#M81191</guid>
      <dc:creator>Jima</dc:creator>
      <dc:date>2021-11-09T14:46:59Z</dc:date>
    </item>
    <item>
      <title>Re: Overlay of lines in PROC TABULATE</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Overlay-of-lines-in-PROC-TABULATE/m-p/779470#M81192</link>
      <description>Hi:&lt;BR /&gt;  Without data, the only thing I see is that the Header for RACE is being overlaid on top of the first level of that class variable. Things like this typically happen because the destination is getting some kind of conflicting instructions for how to render the output . Since there is nesting in the row dimension, and since all font sizes are relative numbers, that will force ODS PDF to convert all the fonts to PT sizes before the output is written. Cellspacing is also relative, and might be contributing to the conflicting instructions, too. My recommendation for debugging would be to break the output up and run some tests to see where the sweet spot was for having RACE as a rowheader in the nested row title area.&lt;BR /&gt;Cynthia</description>
      <pubDate>Tue, 09 Nov 2021 23:37:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Overlay-of-lines-in-PROC-TABULATE/m-p/779470#M81192</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2021-11-09T23:37:43Z</dc:date>
    </item>
    <item>
      <title>Re: Overlay of lines in PROC TABULATE</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Overlay-of-lines-in-PROC-TABULATE/m-p/779551#M81194</link>
      <description>&lt;P&gt;I didn't see any problem with your sample data.&lt;/P&gt;
&lt;P&gt;Or could try other style ?&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;STYLE=journal&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;libname x v9 'c:\temp';


ods listing close;

options orientation = landscape nodate;

ods pdf file = "c:\temp\progprofilex.pdf"

        STYLE=festival pdftoc=1 uniform;

ods escapechar='~';

/*options nonumber printerpath=pdf;*/

 

footnote1 j=l height=3 'CONFIDENTIALITY NOTICE: Data presented in this table are for the sole use of the ---- department responsible for the above curriculum and may';

footnote2 j=l height=3 'contain confidential and privileged information. Any access, use, disclosure, or distribution of these data for purposes other than program';

footnote3 j=l height=3 'review and analysis is unauthorized and prohibited.';

footnote4;

footnote5;

footnote6 j=left bold "Curriculum currnum / Page ~{thispage} of ~{lastpage}"

          j=center bold "Office of ---------------------------"

          j=right  bold "&amp;amp;sysdate";
 

ods proclabel="Table 16: First-Time-In-College (FTIC) Cohort Disaggregated Demographics";

proc tabulate data = x.test missing style=[font_size=4];

    where curr = "699";

        class year fp_code home_campus gender new_race acadplan;

    classlev year / style=[font_size=4];

        classlev fp_code / style=[font_size=4];

        classlev home_campus / style=[font_size=4];

        classlev gender / style=[font_size=4];

        classlev new_race / style=[font_size=4];

        classlev acadplan / style=[font_size=4];

        var count1 / style=[font_size=4];

        var wgt / style=[font_size=4];

/*        format gender $gender. new_race $racex. home_campus $home_campus. fp_code $fp_code. acadplan $acadplandeg.;*/

        table acadplan='' *(fp_code='FP' home_campus='CAMPUS' gender='GENDER' new_race='RACE')

          all='Total'*(fp_code='FP' home_campus='CAMPUS' gender='GENDER' new_race='RACE'),

          year=''*(wgt=''*(sum='N'*f=comma8.0 pctsum&amp;lt;fp_code home_campus gender new_race &amp;gt;='%'*f = 5.1))

                          / box=[label='Academic Plan'

                     style=[background=beige

                            foreground=black

                            font_size=4]]

                     style=[cellspacing=5]

             printmiss misstext='0';

    title3 'Table 16: First-Time-In-College (FTIC) Cohort Disaggregated Demographics';

run;
ods pdf close;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1636549271776.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/65559iAE0EA588D927521D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1636549271776.png" alt="Ksharp_0-1636549271776.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Nov 2021 13:01:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Overlay-of-lines-in-PROC-TABULATE/m-p/779551#M81194</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-11-10T13:01:24Z</dc:date>
    </item>
    <item>
      <title>Re: Overlay of lines in PROC TABULATE</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Overlay-of-lines-in-PROC-TABULATE/m-p/779813#M81206</link>
      <description>&lt;P&gt;Zsharp, thanks for your reply. I have decided to take a different approach to a solution by using a 'by' statement and some pre-report manipulation of the dataset.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for you help...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jim&lt;/P&gt;</description>
      <pubDate>Thu, 11 Nov 2021 15:26:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Overlay-of-lines-in-PROC-TABULATE/m-p/779813#M81206</guid>
      <dc:creator>Jima</dc:creator>
      <dc:date>2021-11-11T15:26:37Z</dc:date>
    </item>
    <item>
      <title>Re: Overlay of lines in PROC TABULATE</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Overlay-of-lines-in-PROC-TABULATE/m-p/779814#M81207</link>
      <description>&lt;P&gt;Cynthia_sas,&amp;nbsp;thanks for your reply. I have decided to take a different approach to a solution by using a 'by' statement and some pre-report manipulation of the dataset.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for you help...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jim&lt;/P&gt;</description>
      <pubDate>Thu, 11 Nov 2021 15:27:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Overlay-of-lines-in-PROC-TABULATE/m-p/779814#M81207</guid>
      <dc:creator>Jima</dc:creator>
      <dc:date>2021-11-11T15:27:39Z</dc:date>
    </item>
  </channel>
</rss>

