<?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 Sorting data in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Sorting-data/m-p/627362#M185181</link>
    <description>&lt;P&gt;Sort your merged SAS data set by price of a quarter rack of ribs, from cheapest to&lt;/P&gt;&lt;P&gt;most expensive. Print the resulting table and present it (properly titled) in your&lt;/P&gt;&lt;P&gt;solutions.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;proc sort data=Bbq;
          
   by descending price 
  
run;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What else am I missing?&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 26 Feb 2020 00:20:26 GMT</pubDate>
    <dc:creator>harveysarah0</dc:creator>
    <dc:date>2020-02-26T00:20:26Z</dc:date>
    <item>
      <title>Sorting data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sorting-data/m-p/627362#M185181</link>
      <description>&lt;P&gt;Sort your merged SAS data set by price of a quarter rack of ribs, from cheapest to&lt;/P&gt;&lt;P&gt;most expensive. Print the resulting table and present it (properly titled) in your&lt;/P&gt;&lt;P&gt;solutions.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;proc sort data=Bbq;
          
   by descending price 
  
run;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What else am I missing?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Feb 2020 00:20:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sorting-data/m-p/627362#M185181</guid>
      <dc:creator>harveysarah0</dc:creator>
      <dc:date>2020-02-26T00:20:26Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sorting-data/m-p/627363#M185182</link>
      <description>&lt;P&gt;Use a Title statement and Proc Print to print your data.&lt;/P&gt;
&lt;P&gt;Check if the sort order is correct and from cheapest (lowest value) to most expensive (highest value).&lt;/P&gt;</description>
      <pubDate>Wed, 26 Feb 2020 00:33:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sorting-data/m-p/627363#M185182</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2020-02-26T00:33:39Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sorting-data/m-p/627375#M185192</link>
      <description>&lt;P&gt;what's a title statement? Sorry I am very new to SAS. and so everything is right except including the title statement and using Proc Print?&lt;/P&gt;</description>
      <pubDate>Wed, 26 Feb 2020 02:04:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sorting-data/m-p/627375#M185192</guid>
      <dc:creator>harveysarah0</dc:creator>
      <dc:date>2020-02-26T02:04:15Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sorting-data/m-p/627376#M185193</link>
      <description>&lt;P&gt;Proc Sort allows you to sort a table. You've done that (but.... shouldn't you sort ascending from lowest to highest value?).&lt;/P&gt;
&lt;P&gt;Now using this sorted table you need to create a report (print what's in the table).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The title statement is what allows you to define a title for your report. Documented &lt;A href="https://go.documentation.sas.com/?docsetId=lestmtsglobal&amp;amp;docsetTarget=p10gcmrmf83iaxn1ilrx4pra969n.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_self"&gt;here&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;Proc Print is a SAS procedure which allows you to create a report (print your data). Documented &lt;A href="https://go.documentation.sas.com/?docsetId=proc&amp;amp;docsetTarget=p10qiuo2yicr4qn17rav8kptnjpu.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_self"&gt;here&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Feb 2020 02:11:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sorting-data/m-p/627376#M185193</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2020-02-26T02:11:36Z</dc:date>
    </item>
  </channel>
</rss>

