<?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: ODS PDF Report - Output 10 Lines to one PDF in a non-table format in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-Report-Output-10-Lines-to-one-PDF-in-a-non-table-format/m-p/293060#M16665</link>
    <description>Thanks! I've resolved the format issue I had thanks to your suggestion. I've added: put(var1,dollar15.2)&lt;BR /&gt;&lt;BR /&gt;Appreciate your assistance &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;</description>
    <pubDate>Mon, 22 Aug 2016 08:46:56 GMT</pubDate>
    <dc:creator>DanielDor</dc:creator>
    <dc:date>2016-08-22T08:46:56Z</dc:date>
    <item>
      <title>ODS PDF Report - Output 10 Lines to one PDF in a non-table format</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-Report-Output-10-Lines-to-one-PDF-in-a-non-table-format/m-p/293048#M16660</link>
      <description>&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. I have a 10X5 dataset. For example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;Var1&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;Var2&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;Var3&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;Var4&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;Var5&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;David&lt;/TD&gt;&lt;TD&gt;US&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;Brad&lt;/TD&gt;&lt;TD&gt;Canada&lt;/TD&gt;&lt;TD&gt;87&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;Knight&lt;/TD&gt;&lt;TD&gt;Canada&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;Bill&lt;/TD&gt;&lt;TD&gt;Canada&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;Donald&lt;/TD&gt;&lt;TD&gt;US&lt;/TD&gt;&lt;TD&gt;64&lt;/TD&gt;&lt;TD&gt;7&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;Hillary&lt;/TD&gt;&lt;TD&gt;US&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;98&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. I would like to iterate through each row, and output Var1, Var3 and Var5 to pdf including text in the middle. The pdf will look like that:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Person number &lt;/SPAN&gt;&lt;STRONG&gt;&amp;lt;var1&amp;gt;&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;Lives in &lt;STRONG&gt;&amp;lt;var3&amp;gt;&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;and has &lt;STRONG&gt;&amp;lt;var5&amp;gt;&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;SPAN&gt;childerns.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Person number &lt;STRONG&gt;1&lt;/STRONG&gt; Lives in &lt;STRONG&gt;US&amp;nbsp;&lt;/STRONG&gt;and has&amp;nbsp;&lt;STRONG&gt;1&amp;nbsp;&lt;/STRONG&gt;childerns.&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Person number &lt;/SPAN&gt;&lt;STRONG&gt;2&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;Lives in &lt;/SPAN&gt;&lt;STRONG&gt;Canada&lt;/STRONG&gt;&lt;SPAN&gt; and has&amp;nbsp;&lt;STRONG&gt;2&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;SPAN&gt;childerns.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;3. What is the best way to do this? Whenever I use ODS PDF it doesn't iterate inside the datastep, and I get only the last row. This is what i'm using:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data _null_;&lt;BR /&gt;set WORK.Temp;&lt;/P&gt;&lt;P&gt;J = 1;&lt;BR /&gt;do while(J lt 5);&lt;BR /&gt;ods pdf text="&amp;amp;var1";&lt;/P&gt;&lt;P&gt;J+ +1;&lt;/P&gt;&lt;P&gt;output;&lt;BR /&gt;end;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;4. Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;D&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Aug 2016 07:09:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-Report-Output-10-Lines-to-one-PDF-in-a-non-table-format/m-p/293048#M16660</guid>
      <dc:creator>DanielDor</dc:creator>
      <dc:date>2016-08-22T07:09:56Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF Report - Output 10 Lines to one PDF in a non-table format</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-Report-Output-10-Lines-to-one-PDF-in-a-non-table-format/m-p/293051#M16661</link>
      <description>&lt;P&gt;ODS statements are not data step statements; they are executed immediately when encountered.&lt;/P&gt;
&lt;P&gt;In your case, the ods statement is encountered when the program text is collected, using the &lt;U&gt;macro variable&lt;/U&gt; var1. It is immediately executed, then the rest of the data step statements are collected, then the data step&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
set WORK.Temp;
J = 1;
do while(J lt 5);
  J+ +1;
  output;
end;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;is compiled and executed, which does not create output or a dataset at all. Note the absence of the ods statement, which has already beeen dealt with.&lt;/P&gt;
&lt;P&gt;If you want your text in the pdf, I suggest to create a simple dataset containing one variable with the text string, and use proc print to print that to the ODS destination.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Aug 2016 07:32:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-Report-Output-10-Lines-to-one-PDF-in-a-non-table-format/m-p/293051#M16661</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-08-22T07:32:32Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF Report - Output 10 Lines to one PDF in a non-table format</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-Report-Output-10-Lines-to-one-PDF-in-a-non-table-format/m-p/293052#M16662</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser﻿&lt;/a&gt; already mentioned the ODS PDF is a global statement, and can not be executed within a DATA Step loop.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Since SAS9.3 there is a function &lt;A href="https://support.sas.com/documentation/cdl/en/lefunctionsref/67960/HTML/default/viewer.htm#p09dcftd1xxg1kn1brnjyc0q93yk.htm" target="_blank"&gt;DOSUBL&lt;/A&gt;, that allows you to execute global statements or complete steps while the DATA Step is running.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So find below two DATA Steps, showing two approaches, the second one is most similar to what you want to do.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods pdf file="c:\temp\sample.pdf";

data _null_;
  set sashelp.class;
  length printLine $ 254;
  printLine = catx(" ", "the person named:", name, "is", age, "old");

  file print ods=(
    GENERIC=ON 
    variables=(printLine)
  );
  put printLine ;
run;


data _null_;
  set sashelp.class;
  length printLine $ 254;
  printLine = catx(" ", "the person named:", name, "is", age, "old");

  rc = dosubl(cats("ods pdf text=", quote(printLine), ";") );
run;

ods pdf close;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Aug 2016 07:53:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-Report-Output-10-Lines-to-one-PDF-in-a-non-table-format/m-p/293052#M16662</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2016-08-22T07:53:49Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF Report - Output 10 Lines to one PDF in a non-table format</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-Report-Output-10-Lines-to-one-PDF-in-a-non-table-format/m-p/293055#M16663</link>
      <description>&lt;P&gt;It seems like you are learning SAS, there are some basics you might want to look at. &amp;nbsp;Datasteps are manipulating data, output procedures such as report and print are for creating output. &amp;nbsp;So your problem resolves to:&lt;/P&gt;
&lt;P&gt;1) Create a dataset which looks like the output should.&lt;/P&gt;
&lt;P&gt;2) Print that dataset&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So:&lt;/P&gt;
&lt;PRE&gt;data want;
  set have;
  length text_to_print $200;&lt;BR /&gt;/* Catx means concatenate each of these text strings with space delimiter between */
  text_to_print=catx(' ',Person number,put(var1,best.),'Lives in',var3,'and has',put(var5,best.),'children.');
run;

ods pdf file="...\&amp;lt;filename&amp;gt;.pdf";
proc print data=want noobs;
run;
odf pdf close;&lt;/PRE&gt;</description>
      <pubDate>Mon, 22 Aug 2016 08:30:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-Report-Output-10-Lines-to-one-PDF-in-a-non-table-format/m-p/293055#M16663</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2016-08-22T08:30:24Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF Report - Output 10 Lines to one PDF in a non-table format</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-Report-Output-10-Lines-to-one-PDF-in-a-non-table-format/m-p/293059#M16664</link>
      <description>&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your prompt response! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; This solution is perfectly fit to the question I had.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;One more thing -&amp;gt; I need to format one of the vars as&amp;nbsp;dollar15.2. Despite the fact that the var is already formatted in the dataset as&amp;nbsp;dollar15.2, the ouput is regular int.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What would be the best method to format the output number as&amp;nbsp;dollar15.2?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;TNX!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;D&lt;/P&gt;</description>
      <pubDate>Mon, 22 Aug 2016 08:44:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-Report-Output-10-Lines-to-one-PDF-in-a-non-table-format/m-p/293059#M16664</guid>
      <dc:creator>DanielDor</dc:creator>
      <dc:date>2016-08-22T08:44:28Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF Report - Output 10 Lines to one PDF in a non-table format</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-Report-Output-10-Lines-to-one-PDF-in-a-non-table-format/m-p/293060#M16665</link>
      <description>Thanks! I've resolved the format issue I had thanks to your suggestion. I've added: put(var1,dollar15.2)&lt;BR /&gt;&lt;BR /&gt;Appreciate your assistance &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;</description>
      <pubDate>Mon, 22 Aug 2016 08:46:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-Report-Output-10-Lines-to-one-PDF-in-a-non-table-format/m-p/293060#M16665</guid>
      <dc:creator>DanielDor</dc:creator>
      <dc:date>2016-08-22T08:46:56Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF Report - Output 10 Lines to one PDF in a non-table format</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-Report-Output-10-Lines-to-one-PDF-in-a-non-table-format/m-p/293061#M16666</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/68241"&gt;@DanielDor&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Greetings,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for your prompt response! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; This solution is perfectly fit to the question I had.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One more thing -&amp;gt; I need to format one of the vars as&amp;nbsp;dollar15.2. Despite the fact that the var is already formatted in the dataset as&amp;nbsp;dollar15.2, the ouput is regular int.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What would be the best method to format the output number as&amp;nbsp;dollar15.2?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;TNX!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;D&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Use the dollar15.2 format in the respective put() function.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Aug 2016 08:47:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-Report-Output-10-Lines-to-one-PDF-in-a-non-table-format/m-p/293061#M16666</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-08-22T08:47:17Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF Report - Output 10 Lines to one PDF in a non-table format</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-Report-Output-10-Lines-to-one-PDF-in-a-non-table-format/m-p/293062#M16667</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the format is already assignd to the variable, you can also use the VVALUE() function.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Which version of the DATA Step did you choose for your program?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bruno&lt;/P&gt;</description>
      <pubDate>Mon, 22 Aug 2016 08:50:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-Report-Output-10-Lines-to-one-PDF-in-a-non-table-format/m-p/293062#M16667</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2016-08-22T08:50:47Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF Report - Output 10 Lines to one PDF in a non-table format</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-Report-Output-10-Lines-to-one-PDF-in-a-non-table-format/m-p/293069#M16668</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've used the 2nd data step version.. Thanks againg! This is the code i finally used:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods pdf file="C:\temp - &amp;amp;fdate .pdf" ;&lt;BR /&gt;title "^S={font_size=14pt} Report - &amp;amp;fdate ^S={}";&lt;BR /&gt;ods escapechar='^';&lt;BR /&gt;ods pdf text = "^{style[just=right preimage='C:\Users\Public\Pictures\Sample Pictures\tempPIC.png']}";&lt;/P&gt;&lt;P&gt;data _null_;&lt;/P&gt;&lt;P&gt;set WORK.temp_report;&lt;BR /&gt;length printLine $ 900;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;printLine = catx(" ",'Area: ', Region,' -&amp;gt; ', 'Country: ',Country , ' -&amp;gt; ', 'Account: ', Account);&lt;BR /&gt;rc = dosubl(cats("ods pdf text=", quote(strip(printLine)), ";") );&lt;/P&gt;&lt;P&gt;printLine = catx(" ",'Ammount: ', put(Amount,dollar15.2) );&lt;BR /&gt;rc = dosubl(cats("ods pdf text=", quote(strip(printLine)), ";") );&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;printLine = catx(" ", 'Date Started: ', put(Delivered, date9.));&lt;BR /&gt;rc = dosubl(cats("ods pdf text=", quote(strip(printLine)), ";") );&lt;/P&gt;&lt;P&gt;printLine = catx(" ", Last_Update_Text);&lt;BR /&gt;rc = dosubl(cats("ods pdf text=", quote(strip(printLine)), ";") );&lt;/P&gt;&lt;P&gt;printLine = catx(" ",'--------------------------------------');&lt;BR /&gt;rc = dosubl(cats("ods pdf text=", quote(strip(printLine)), ";") );&lt;/P&gt;&lt;P&gt;run;&lt;BR /&gt;ods pdf close;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Aug 2016 09:02:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-Report-Output-10-Lines-to-one-PDF-in-a-non-table-format/m-p/293069#M16668</guid>
      <dc:creator>DanielDor</dc:creator>
      <dc:date>2016-08-22T09:02:31Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF Report - Output 10 Lines to one PDF in a non-table format</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-Report-Output-10-Lines-to-one-PDF-in-a-non-table-format/m-p/293071#M16669</link>
      <description>&lt;PRE&gt;
Actually you can do it with proc report.


data have;
 set sashelp.class;
 n+1;
run;

ods pdf file='/folders/myfolders/x.pdf';
proc report data=have nowd style={rules=none frame=void};
column n name age ;
define n/order noprint;
define name/order noprint;
define age/order noprint;

compute after age;
 temp=catx(' ','Person number ' ,n ,'Lives in' ,name,' and has ' ,age ,' childerns.');
 line temp $100.;
endcomp;
run;
ods pdf close;


&lt;/PRE&gt;</description>
      <pubDate>Mon, 22 Aug 2016 09:03:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-Report-Output-10-Lines-to-one-PDF-in-a-non-table-format/m-p/293071#M16669</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-08-22T09:03:19Z</dc:date>
    </item>
  </channel>
</rss>

