<?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: Missing value in proc report, exact order of input data in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Missing-value-in-proc-report-exact-order-of-input-data/m-p/440926#M20546</link>
    <description>&lt;P&gt;Thank you.&amp;nbsp;My code does not create the desired table. &amp;nbsp;First I don't want to merge the cells with missing value. Second,&amp;nbsp;I want the proc report table has the exact order of the input dataset.&amp;nbsp; Third, the goal is to merge the cells&amp;nbsp;if the "num" values are adjacent.&lt;/P&gt;&lt;P&gt;Here is the code and the desired table is attached.&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; have;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;input&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; variable $ @&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;10&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="3"&gt; groups &lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;$1.&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; @&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;13&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="3"&gt; num;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;datalines&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;drugL&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;/P&gt;&lt;P&gt;drugZ&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&lt;/P&gt;&lt;P&gt;drugC&amp;nbsp;&amp;nbsp;&amp;nbsp; D&amp;nbsp; 3&lt;/P&gt;&lt;P&gt;drugD&amp;nbsp;&amp;nbsp;&amp;nbsp; B&amp;nbsp; 4&lt;/P&gt;&lt;P&gt;drugE&amp;nbsp;&amp;nbsp;&amp;nbsp; B&amp;nbsp; 5&lt;/P&gt;&lt;P&gt;drugF&amp;nbsp;&amp;nbsp;&amp;nbsp; B&amp;nbsp; 6&lt;/P&gt;&lt;P&gt;drugX&amp;nbsp;&amp;nbsp;&amp;nbsp; B&amp;nbsp; 7&lt;/P&gt;&lt;P&gt;drugH&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;B&amp;nbsp; 8&lt;/P&gt;&lt;P&gt;drugI&amp;nbsp;&amp;nbsp;&amp;nbsp; C &amp;nbsp;9&lt;/P&gt;&lt;P&gt;drugJ&amp;nbsp;&amp;nbsp;&amp;nbsp; B&amp;nbsp; 10&lt;/P&gt;&lt;P&gt;DrugK&amp;nbsp;&amp;nbsp;&amp;nbsp; B&amp;nbsp; 11&lt;/P&gt;&lt;P&gt;DrugL&amp;nbsp;&amp;nbsp;&amp;nbsp; F&amp;nbsp; 12&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;; &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;report&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;data&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;=have &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;spanrows&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;column&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; variable groups num;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;define&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; groups/ &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;group&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;define&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; num/&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;order&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;noprint&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 28 Feb 2018 15:49:23 GMT</pubDate>
    <dc:creator>SSH2</dc:creator>
    <dc:date>2018-02-28T15:49:23Z</dc:date>
    <item>
      <title>Missing value in proc report, exact order of input data</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Missing-value-in-proc-report-exact-order-of-input-data/m-p/440753#M20538</link>
      <description>&lt;P&gt;The original table was sorted by&amp;nbsp; "Num".&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to&lt;/P&gt;&lt;P&gt;1. merge the cells in column "Group"&amp;nbsp;if they have the same value and if they are adjacent ("Num" value are contiguous).&lt;/P&gt;&lt;P&gt;2. keep the&amp;nbsp;exact order of input data set in the Proc report output&lt;/P&gt;&lt;P&gt;3. The missing cells will not merge.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The Original SAS dataset is:&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Variable&lt;/TD&gt;&lt;TD&gt;Group&lt;/TD&gt;&lt;TD&gt;Num&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;drugL&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;drugZ&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;drugC&lt;/TD&gt;&lt;TD&gt;D&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;drugD&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;drugE&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;drugF&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;drugX&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;7&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;drugH&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;8&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;drugI&lt;/TD&gt;&lt;TD&gt;C&lt;/TD&gt;&lt;TD&gt;9&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;drugJ&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;10&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;drugK&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;11&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;drugL&lt;/TD&gt;&lt;TD&gt;F&lt;/TD&gt;&lt;TD&gt;12&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The ideal output table is attached. Thank you for your help!&lt;/P&gt;</description>
      <pubDate>Wed, 28 Feb 2018 03:23:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Missing-value-in-proc-report-exact-order-of-input-data/m-p/440753#M20538</guid>
      <dc:creator>SSH2</dc:creator>
      <dc:date>2018-02-28T03:23:12Z</dc:date>
    </item>
    <item>
      <title>Re: Missing value in proc report, exact order of input data</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Missing-value-in-proc-report-exact-order-of-input-data/m-p/440815#M20539</link>
      <description>&lt;P&gt;Not sure that is possible as such.&amp;nbsp; Groups normally appear on the left of the data, e.g;&lt;/P&gt;
&lt;P&gt;Group&amp;nbsp; Variable&lt;/P&gt;
&lt;P&gt;---&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; drugl&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; drugz&lt;/P&gt;
&lt;P&gt;---&lt;/P&gt;
&lt;P&gt;d&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; drugc&lt;/P&gt;
&lt;P&gt;---&lt;/P&gt;
&lt;P&gt;b&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; drugd&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; druge&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; drugf&lt;/P&gt;
&lt;P&gt;...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In fact, unless that table is not being used any further, you might find it causes problems down the line.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Feb 2018 09:39:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Missing-value-in-proc-report-exact-order-of-input-data/m-p/440815#M20539</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-02-28T09:39:53Z</dc:date>
    </item>
    <item>
      <title>Re: Missing value in proc report, exact order of input data</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Missing-value-in-proc-report-exact-order-of-input-data/m-p/440873#M20540</link>
      <description>&lt;P&gt;Thank you for your time. It doesn't matter "Group" on the left or right.&amp;nbsp;&amp;nbsp;This proc report output table is&amp;nbsp;a final report table.&amp;nbsp;I tried to use spanrows but does not work.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Feb 2018 13:11:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Missing-value-in-proc-report-exact-order-of-input-data/m-p/440873#M20540</guid>
      <dc:creator>SSH2</dc:creator>
      <dc:date>2018-02-28T13:11:34Z</dc:date>
    </item>
    <item>
      <title>Re: Missing value in proc report, exact order of input data</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Missing-value-in-proc-report-exact-order-of-input-data/m-p/440898#M20544</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It really should be spanrows:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/ODS-and-Base-Reporting/Merge-cell-and-Background-Color-in-tagsets-ExcelXP/td-p/269256" target="_blank"&gt;https://communities.sas.com/t5/ODS-and-Base-Reporting/Merge-cell-and-Background-Color-in-tagsets-ExcelXP/td-p/269256&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you perhaps describe what "does not work", providing test data/code would be helpful.&lt;/P&gt;</description>
      <pubDate>Wed, 28 Feb 2018 14:35:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Missing-value-in-proc-report-exact-order-of-input-data/m-p/440898#M20544</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-02-28T14:35:25Z</dc:date>
    </item>
    <item>
      <title>Re: Missing value in proc report, exact order of input data</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Missing-value-in-proc-report-exact-order-of-input-data/m-p/440926#M20546</link>
      <description>&lt;P&gt;Thank you.&amp;nbsp;My code does not create the desired table. &amp;nbsp;First I don't want to merge the cells with missing value. Second,&amp;nbsp;I want the proc report table has the exact order of the input dataset.&amp;nbsp; Third, the goal is to merge the cells&amp;nbsp;if the "num" values are adjacent.&lt;/P&gt;&lt;P&gt;Here is the code and the desired table is attached.&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; have;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;input&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; variable $ @&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;10&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="3"&gt; groups &lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;$1.&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; @&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;13&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="3"&gt; num;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;datalines&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;drugL&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;/P&gt;&lt;P&gt;drugZ&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&lt;/P&gt;&lt;P&gt;drugC&amp;nbsp;&amp;nbsp;&amp;nbsp; D&amp;nbsp; 3&lt;/P&gt;&lt;P&gt;drugD&amp;nbsp;&amp;nbsp;&amp;nbsp; B&amp;nbsp; 4&lt;/P&gt;&lt;P&gt;drugE&amp;nbsp;&amp;nbsp;&amp;nbsp; B&amp;nbsp; 5&lt;/P&gt;&lt;P&gt;drugF&amp;nbsp;&amp;nbsp;&amp;nbsp; B&amp;nbsp; 6&lt;/P&gt;&lt;P&gt;drugX&amp;nbsp;&amp;nbsp;&amp;nbsp; B&amp;nbsp; 7&lt;/P&gt;&lt;P&gt;drugH&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;B&amp;nbsp; 8&lt;/P&gt;&lt;P&gt;drugI&amp;nbsp;&amp;nbsp;&amp;nbsp; C &amp;nbsp;9&lt;/P&gt;&lt;P&gt;drugJ&amp;nbsp;&amp;nbsp;&amp;nbsp; B&amp;nbsp; 10&lt;/P&gt;&lt;P&gt;DrugK&amp;nbsp;&amp;nbsp;&amp;nbsp; B&amp;nbsp; 11&lt;/P&gt;&lt;P&gt;DrugL&amp;nbsp;&amp;nbsp;&amp;nbsp; F&amp;nbsp; 12&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;; &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;report&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;data&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;=have &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;spanrows&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;column&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; variable groups num;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;define&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; groups/ &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;group&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;define&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; num/&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;order&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;noprint&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Feb 2018 15:49:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Missing-value-in-proc-report-exact-order-of-input-data/m-p/440926#M20546</guid>
      <dc:creator>SSH2</dc:creator>
      <dc:date>2018-02-28T15:49:23Z</dc:date>
    </item>
    <item>
      <title>Re: Missing value in proc report, exact order of input data</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Missing-value-in-proc-report-exact-order-of-input-data/m-p/440934#M20547</link>
      <description>&lt;P&gt;I am afraid I do not know of a way, you either group the data, or you don't group the data.&amp;nbsp; Missing is a group, you could theoretically put non-printing spaces in there to make the two different, but why, doesn't make sense.&lt;/P&gt;
&lt;P&gt;You "data in the order of the dataset" also doesn't make sense, if B is a group, then that group includes all values with B, otherwise it is not a group, why shouldn't&amp;nbsp;&lt;SPAN&gt;drugJ appear in the same group as drug x, they are both group a.&amp;nbsp; For example, drugs are normally coded to ATC, and then grouped under the various levels of that.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Feb 2018 16:08:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Missing-value-in-proc-report-exact-order-of-input-data/m-p/440934#M20547</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-02-28T16:08:55Z</dc:date>
    </item>
    <item>
      <title>Re: Missing value in proc report, exact order of input data</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Missing-value-in-proc-report-exact-order-of-input-data/m-p/440946#M20549</link>
      <description>&lt;P&gt;Thank you. I don't worry whether or not the desired table makes sense or not. I am more interested in how to get the desired format.&amp;nbsp;&amp;nbsp;The desired table&amp;nbsp;will keep the same order of the input dataset. I am trying to play with proc report&amp;nbsp;to reach the&amp;nbsp;goal. Not to understand why we&amp;nbsp;want to do&amp;nbsp;that. &amp;nbsp;Thank you anyway.&lt;/P&gt;</description>
      <pubDate>Wed, 28 Feb 2018 16:45:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Missing-value-in-proc-report-exact-order-of-input-data/m-p/440946#M20549</guid>
      <dc:creator>SSH2</dc:creator>
      <dc:date>2018-02-28T16:45:36Z</dc:date>
    </item>
  </channel>
</rss>

