<?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: Ordering the values in a cross tab output? in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Ordering-the-values-in-a-cross-tab-output/m-p/116494#M32138</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A __default_attr="645021" __jive_macro_name="user" class="jive_macro jive_macro_user" data-objecttype="3" href="https://communities.sas.com/"&gt;&lt;/A&gt; The two sets of code appear to be doing mostly the same thing and, yes, your explanations appear to be correct.&amp;nbsp; Are you obtaining different results from the two methods?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The principal differences I see between the two sets of code are that:&lt;/P&gt;&lt;P&gt;1. My code will silently set alpha characters to missing during the conversion&lt;/P&gt;&lt;P&gt;2. You drop the original variables while my code didn't (but easily could have)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As for whether one renames or drops in the set statement, the data statement or in the code itself, is probably just a matter of one's personal preference.&amp;nbsp; I happen to like doing those things in the data and set statements as, there, I know the order in which the statements will be executed, namely alphabetically.&amp;nbsp; Drops are done before Keeps which are done before Renames.&amp;nbsp; Honestly, I've never even considered if there is such a precedence inherent when they are included as separate statements in the datastep.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 09 Nov 2012 14:47:12 GMT</pubDate>
    <dc:creator>art297</dc:creator>
    <dc:date>2012-11-09T14:47:12Z</dc:date>
    <item>
      <title>Ordering the values in a cross tab output?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Ordering-the-values-in-a-cross-tab-output/m-p/116488#M32132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 11pt; background: white; font-family: 'Courier New';"&gt;Hi SAS Community,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 11pt; background: white; font-family: 'Courier New';"&gt; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 11pt; background: white; font-family: 'Courier New';"&gt;I have run the below proc freq. &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 11pt; background: white; font-family: 'Courier New';"&gt; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 11pt; background: white; font-family: 'Courier New';"&gt;proc&lt;/STRONG&gt; &lt;STRONG style="color: navy; font-size: 11pt; background: white; font-family: 'Courier New';"&gt;freq&lt;/STRONG&gt; &lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 11pt;"&gt;data&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;=QP.have;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 11pt;"&gt;tables&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt; Days_Past * arrears_band/&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 11pt;"&gt;missing&lt;/SPAN&gt; &lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 11pt;"&gt;nocol&lt;/SPAN&gt; &lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 11pt;"&gt;norow&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt; nopct ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 11pt;"&gt;where&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt; product IN (&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple; font-size: 11pt;"&gt;'OD'&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple; font-size: 11pt;"&gt;'Loan'&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple; font-size: 11pt;"&gt;'Mort'&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 11pt; background: white; font-family: 'Courier New';"&gt;run&lt;/STRONG&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt; text-decoration: underline;"&gt;This is the output. &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt;Table of Days_Past&amp;nbsp; by Arrears_Band&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: red; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="padding-bottom: 0px; padding-left: 5.4pt; padding-right: 5.4pt; margin-left: 4.7pt; padding-top: 0px;" width="576"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD colspan="9" style="border-bottom: #333333 1pt solid; border-left: #333333 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; background: #ffffcc; border-top: #333333 1pt solid; border-right: medium none;" width="576"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt; &lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD colspan="2" rowspan="2" style="border-bottom: #333333 1pt solid; border-left: #333333 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; background: #ffffcc; border-top: medium none; border-right: #333333 1pt solid;" valign="top" width="181"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt; &lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD colspan="6" style="border-bottom: #333333 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: #ffffcc; border-top: medium none; border-right: #333333 1pt solid;" valign="top" width="348"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt;Arrears_Band&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD rowspan="2" style="border-bottom: #333333 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: #ffffcc; border-top: medium none; border-right: medium none;" valign="bottom" width="47"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt;Total&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border-bottom: #333333 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: #ffffcc; border-top: medium none; border-right: #333333 1pt solid;" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt;1 - 30&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-bottom: #333333 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: #ffffcc; border-top: medium none; border-right: #333333 1pt solid;" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt;30 - 60&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-bottom: #333333 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: #ffffcc; border-top: medium none; border-right: #333333 1pt solid;" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt;60 - 90&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-bottom: #333333 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: #ffffcc; border-top: medium none; border-right: #333333 1pt solid;" width="45"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt;90 +&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-bottom: #333333 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: #ffffcc; border-top: medium none; border-right: #333333 1pt solid;" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt;Current&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-bottom: #333333 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: #ffffcc; border-top: medium none; border-right: #333333 1pt solid;" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt;NPNA&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border-bottom: #333333 1pt solid; border-left: #333333 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; background: #ffffcc; border-top: medium none; border-right: #333333 1pt solid;" valign="top" width="85"&gt;&lt;P&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt;Days_Past&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-bottom: #333333 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: #ffffcc; border-top: medium none; border-right: #333333 1pt solid;" valign="top" width="96"&gt;&lt;P&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt; &lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" rowspan="2" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" rowspan="2" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" rowspan="2" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" rowspan="2" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="45"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" rowspan="2" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;48&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" rowspan="2" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;69&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" rowspan="2" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="47"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border-bottom: #333333 1pt solid; border-left: #333333 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; background: #ffffcc; border-top: medium none; border-right: #333333 1pt solid;" width="85"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt;ÿ&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-bottom: #333333 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: #ffffcc; border-top: medium none; border-right: #333333 1pt solid;" width="96"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt;Frequency&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border-bottom: #333333 1pt solid; border-left: #333333 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; background: #ffffcc; border-top: medium none; border-right: #333333 1pt solid;" width="85"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt;0&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-bottom: #333333 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: #ffffcc; border-top: medium none; border-right: #333333 1pt solid;" width="96"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt;Frequency&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="45"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;797&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;5&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="47"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border-bottom: #333333 1pt solid; border-left: #333333 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; background: #ffffcc; border-top: medium none; border-right: #333333 1pt solid;" width="85"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt;1&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-bottom: #333333 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: #ffffcc; border-top: medium none; border-right: #333333 1pt solid;" width="96"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt;Frequency&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;300&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="45"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;613&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="47"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border-bottom: #333333 1pt solid; border-left: #333333 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; background: #ffffcc; border-top: medium none; border-right: #333333 1pt solid;" width="85"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt;10&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-bottom: #333333 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: #ffffcc; border-top: medium none; border-right: #333333 1pt solid;" width="96"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt;Frequency&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;504&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="45"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;25&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="47"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border-bottom: #333333 1pt solid; border-left: #333333 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; background: #ffffcc; border-top: medium none; border-right: #333333 1pt solid;" width="85"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt;100&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-bottom: #333333 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: #ffffcc; border-top: medium none; border-right: #333333 1pt solid;" width="96"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt;Frequency&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="45"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;1&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;107&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="47"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border-bottom: #333333 1pt solid; border-left: #333333 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; background: #ffffcc; border-top: medium none; border-right: #333333 1pt solid;" width="85"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt;101&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-bottom: #333333 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: #ffffcc; border-top: medium none; border-right: #333333 1pt solid;" width="96"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt;Frequency&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="45"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;61&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="47"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border-bottom: #333333 1pt solid; border-left: #333333 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; background: #ffffcc; border-top: medium none; border-right: #333333 1pt solid;" width="85"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt;102&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-bottom: #333333 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: #ffffcc; border-top: medium none; border-right: #333333 1pt solid;" width="96"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt;Frequency&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="45"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;103&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="47"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border-bottom: #333333 1pt solid; border-left: #333333 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; background: #ffffcc; border-top: medium none; border-right: #333333 1pt solid;" width="85"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt;103&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-bottom: #333333 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: #ffffcc; border-top: medium none; border-right: #333333 1pt solid;" width="96"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt;Frequency&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="45"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;6&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;78&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="47"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border-bottom: #333333 1pt solid; border-left: #333333 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; background: #ffffcc; border-top: medium none; border-right: #333333 1pt solid;" width="85"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt;104&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-bottom: #333333 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: #ffffcc; border-top: medium none; border-right: #333333 1pt solid;" width="96"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt;Frequency&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="45"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;1&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;37&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="47"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border-bottom: #333333 1pt solid; border-left: #333333 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; background: #ffffcc; border-top: medium none; border-right: #333333 1pt solid;" width="85"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt;105&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-bottom: #333333 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: #ffffcc; border-top: medium none; border-right: #333333 1pt solid;" width="96"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt;Frequency&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="45"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;82&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="47"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border-bottom: #333333 1pt solid; border-left: #333333 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; background: #ffffcc; border-top: medium none; border-right: #333333 1pt solid;" width="85"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt;106&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-bottom: #333333 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: #ffffcc; border-top: medium none; border-right: #333333 1pt solid;" width="96"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt;Frequency&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="45"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;1&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;78&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="47"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border-bottom: #333333 1pt solid; border-left: #333333 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; background: #ffffcc; border-top: medium none; border-right: #333333 1pt solid;" width="85"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt;107&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-bottom: #333333 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: #ffffcc; border-top: medium none; border-right: #333333 1pt solid;" width="96"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt;Frequency&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="45"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;1&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;141&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="47"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border-bottom: #333333 1pt solid; border-left: #333333 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; background: #ffffcc; border-top: medium none; border-right: #333333 1pt solid;" width="85"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt;108&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-bottom: #333333 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: #ffffcc; border-top: medium none; border-right: #333333 1pt solid;" width="96"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt;Frequency&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="45"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;1&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;103&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="47"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border-bottom: #333333 1pt solid; border-left: #333333 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; background: #ffffcc; border-top: medium none; border-right: #333333 1pt solid;" width="85"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt;109&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-bottom: #333333 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: #ffffcc; border-top: medium none; border-right: #333333 1pt solid;" width="96"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt;Frequency&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="45"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;1&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;36&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="47"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border-bottom: #333333 1pt solid; border-left: #333333 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; background: #ffffcc; border-top: medium none; border-right: #333333 1pt solid;" width="85"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt;11&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-bottom: #333333 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: #ffffcc; border-top: medium none; border-right: #333333 1pt solid;" width="96"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt;Frequency&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;165&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="45"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="60"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt;30&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt;" valign="bottom" width="47"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: Arial; color: black; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Question:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;In the above Table:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="text-indent: -0.5in; padding-left: 67px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN class="pasted-list-info"&gt;i)&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; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;I need to get the values of the “&lt;/SPAN&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt;Days_Past” column in ascending order&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="text-indent: -0.5in; padding-left: 67px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN class="pasted-list-info"&gt;ii)&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; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;Need to replace notation &lt;/SPAN&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt;ÿ with the word missing or ‘ ’&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="text-indent: -0.5in; padding-left: 67px;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt;iii)&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; Need to get rid of the repeating word "Freequency" &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;I have tried with &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: red; font-size: 11pt;"&gt;DATA, FORMATTED, and INTERNAL options in place of yellow-higlighed “freq” below but non works.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 11pt; background: white; font-family: 'Courier New';"&gt;proc&lt;/STRONG&gt; &lt;STRONG style="color: navy; font-size: 11pt; background: white; font-family: 'Courier New';"&gt;freq&lt;/STRONG&gt; &lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 11pt;"&gt;data&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;=QP.have &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 11pt;"&gt;order&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;=&lt;SPAN style="background: yellow;"&gt;freq&lt;/SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 11pt;"&gt;tables&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt; Days_Past * arrears_band/&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 11pt;"&gt;missing&lt;/SPAN&gt; &lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 11pt;"&gt;nocol&lt;/SPAN&gt; &lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 11pt;"&gt;norow&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt; nopct ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 11pt;"&gt;where&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt; product IN (&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple; font-size: 11pt;"&gt;'OD'&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple; font-size: 11pt;"&gt;'Loan'&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple; font-size: 11pt;"&gt;'Mort'&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 11pt; background: white; font-family: 'Courier New';"&gt;run&lt;/STRONG&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;/*This excellent example provided by Ksharp also cannot be applied because I have about 700 values for the variable “&lt;/SPAN&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Arial;"&gt;Days_Past” &lt;/STRONG&gt;&lt;SPAN style="font-size: 10pt;"&gt; */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: #575757; font-size: 10pt;"&gt;data x;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: #575757; font-size: 10pt;"&gt;input a &amp;amp; $10. b &amp;amp; $10.;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: #575757; font-size: 10pt;"&gt;cards;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: #575757; font-size: 10pt;"&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;&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; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: #575757; font-size: 10pt;"&gt;Current&amp;nbsp;&amp;nbsp; Current&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: #575757; font-size: 10pt;"&gt;1 - 30&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Delinquent&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: #575757; font-size: 10pt;"&gt;30 - 60&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Default&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: #575757; font-size: 10pt;"&gt;60 - 90&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NPNA&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: #575757; font-size: 10pt;"&gt;90+&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Current &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: #575757; font-size: 10pt;"&gt;NPNA&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Current&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: #575757; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: #575757; font-size: 10pt;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: #575757; font-size: 10pt;"&gt;proc format ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: #575757; font-size: 10pt;"&gt;&amp;nbsp; value $ fmt&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: #575757; font-size: 10pt;"&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; Missing'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: #575757; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Current' = '&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Current'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: #575757; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; '1 - 30'&amp;nbsp;&amp;nbsp;&amp;nbsp; = '&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1 - 30' &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: #575757; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; '30 - 60'&amp;nbsp;&amp;nbsp; = '&amp;nbsp;&amp;nbsp;&amp;nbsp; 30 - 60'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: #575757; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; '60 - 90'&amp;nbsp;&amp;nbsp; ='&amp;nbsp;&amp;nbsp; 60 - 90' &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: #575757; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; '90+'&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ='&amp;nbsp; 90+' &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: #575757; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Default'=&amp;nbsp; 'Default'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: #575757; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Delinquent'= ' Delinquent'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: #575757; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'NPNA'&amp;nbsp;&amp;nbsp;&amp;nbsp; = 'NPNA' &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: #575757; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: #575757; font-size: 10pt;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: #575757; font-size: 10pt;"&gt;proc freq order=formatted;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: #575757; font-size: 10pt;"&gt;tables b*a/missing ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: #575757; font-size: 10pt;"&gt;format a b $fmt.;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: #575757; font-size: 10pt;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Could anyone help me on this?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Mirisage&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Nov 2012 20:29:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Ordering-the-values-in-a-cross-tab-output/m-p/116488#M32132</guid>
      <dc:creator>Mirisage</dc:creator>
      <dc:date>2012-11-02T20:29:46Z</dc:date>
    </item>
    <item>
      <title>Re: Ordering the values in a cross tab output?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Ordering-the-values-in-a-cross-tab-output/m-p/116489#M32133</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not to be a PITA but haven't you asked multiple questions like this before?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Basically the BEST way to do it, is not to code to character values like you have but use numeric codes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ie rather than&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: #575757; font-size: 10pt;"&gt;&amp;nbsp; .=' Missing'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: #575757; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0 = 'Current'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: #575757; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1= '1 - 30' &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: #575757; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2= '30 - 60'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: #575757; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3='60 - 90' &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: #575757; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4 ='90+' &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: #575757; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 5=&amp;nbsp; 'Default'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: #575757; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 6= ' Delinquent'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: #575757; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 7= 'NPNA'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: #575757; font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: #575757; font-size: 10pt;"&gt;Then apply the format using a proc tabulate where you can control all the labels in the table. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: #575757; font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: #575757; font-size: 10pt;"&gt;With this method you don't need extra spaces in the labels which can mess up your reports and the sorts will work fine. &lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Nov 2012 21:36:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Ordering-the-values-in-a-cross-tab-output/m-p/116489#M32133</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2012-11-02T21:36:28Z</dc:date>
    </item>
    <item>
      <title>Re: Ordering the values in a cross tab output?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Ordering-the-values-in-a-cross-tab-output/m-p/116490#M32134</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Reeza,&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;This question is actually different than the several questions I have asked previously.&lt;/P&gt;&lt;P&gt;I wanted to attach my data set into this to make my question clearer.&lt;/P&gt;&lt;P&gt;However, I cannot attach it into this.&lt;/P&gt;&lt;P&gt;So, I have to do new posting and please have a look on it if you have time.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;M&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Nov 2012 03:16:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Ordering-the-values-in-a-cross-tab-output/m-p/116490#M32134</guid>
      <dc:creator>Mirisage</dc:creator>
      <dc:date>2012-11-07T03:16:18Z</dc:date>
    </item>
    <item>
      <title>Re: Ordering the values in a cross tab output?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Ordering-the-values-in-a-cross-tab-output/m-p/116491#M32135</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Days_past is sorting in character order. The variable is probabably not numeric and is sorting properly if that is the case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You may have modified the template that Proc Freq is using to do crosstabs, possibly from running an example somewhere as the label FREQUENCY normally will not appear in the output.&lt;/P&gt;&lt;P&gt;Try adding:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;SPAN lang="EN"&gt;ods path sashelp.tmplmst(read) sasuser.templat(update);&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;SPAN lang="EN"&gt;before the proc freq to reset the search order of templates to use the default templates and see if that will fix the "Frequency" text problem.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Nov 2012 15:58:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Ordering-the-values-in-a-cross-tab-output/m-p/116491#M32135</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2012-11-07T15:58:04Z</dc:date>
    </item>
    <item>
      <title>Re: Ordering the values in a cross tab output?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Ordering-the-values-in-a-cross-tab-output/m-p/116492#M32136</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wouldn't something like the following give you what you want?:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data need;&lt;/P&gt;&lt;P&gt;&amp;nbsp; set have (rename=(Days_Past=_Days_Past));&lt;/P&gt;&lt;P&gt;&amp;nbsp; Days_Past=input(_Days_Past, ?? 12.);&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc freq data=need order=internal;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; tables Days_Past * arrears_band/missing nocol norow nopct ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; where product IN ('OD','Loan','Mort');&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Nov 2012 16:27:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Ordering-the-values-in-a-cross-tab-output/m-p/116492#M32136</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-11-07T16:27:47Z</dc:date>
    </item>
    <item>
      <title>Re: Ordering the values in a cross tab output?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Ordering-the-values-in-a-cross-tab-output/m-p/116493#M32137</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 11pt; background: white; font-family: 'Courier New';"&gt;Hi ballardw and Art,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 11pt; background: white; font-family: 'Courier New';"&gt; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 11pt; background: white; font-family: 'Courier New';"&gt;Many thanks.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 11pt; background: white; font-family: 'Courier New';"&gt; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 11pt; background: white; font-family: 'Courier New';"&gt;Hi Art,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 11pt; background: white; font-family: 'Courier New';"&gt;What you have suggested works. Thanks.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 11pt; background: white; font-family: 'Courier New';"&gt; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 11pt; background: white; font-family: 'Courier New';"&gt;I would like to ask your help to learn another aspect from your code. &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 11pt; background: white; font-family: 'Courier New';"&gt; &lt;/STRONG&gt;&lt;STRONG style="color: navy; font-size: 11pt; background: white; font-family: 'Courier New';"&gt; &lt;/STRONG&gt;&lt;/P&gt;&lt;P style="padding-left: 45px;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;data need;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 45px;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp; set have (rename=(Days_Past=_Days_Past));&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 45px;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp; Days_Past=input(_Days_Past, ?? 12.);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 45px;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 45px;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; background: white; font-family: 'Courier New';"&gt; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; background: white; font-family: 'Courier New';"&gt;Above code performs sequentially what I have shown below:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; background: white; font-family: 'Courier New';"&gt; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; background: white; font-family: 'Courier New';"&gt;1). It takes the character variable named &lt;/STRONG&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;Days_Past from work.have and renames it to _Days_Past&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;2). Then the _Days_Past variable is converted into a numeric variable and gives the name Days_Past&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: Arial; color: black; font-size: 11.5pt;"&gt;double question mark (??) modifier suppresses the printing of both the error messages and the input lines when invalid data values are read.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;Am I correct?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;Question:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;How come then the following code does the job differently (I have explained the sequence after the below code).&lt;/SPAN&gt;&lt;STRONG style="color: navy; font-size: 11pt; background: white; font-family: 'Courier New';"&gt; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 11pt; background: white; font-family: 'Courier New';"&gt; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 11pt; background: white; font-family: 'Courier New';"&gt;data&lt;/STRONG&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt; work.want&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 11pt;"&gt;rename&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt; =&amp;nbsp; (N_VAR1= VAR1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; N_VAR2 =&amp;nbsp;&amp;nbsp; VAR2&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; N_VAR3 = VAR3));&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 11pt;"&gt;set&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt; work.have ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; N_VAR1 = input(VAR1, &lt;/SPAN&gt;&lt;STRONG style="color: teal; font-size: 11pt; background: white; font-family: 'Courier New';"&gt;8.&lt;/STRONG&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; N_VAR2 = input (VAR2,&lt;/SPAN&gt;&lt;STRONG style="color: teal; font-size: 11pt; background: white; font-family: 'Courier New';"&gt;8.&lt;/STRONG&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; N_VAR3 = input (VAR3, &lt;/SPAN&gt;&lt;STRONG style="color: teal; font-size: 11pt; background: white; font-family: 'Courier New';"&gt;8.&lt;/STRONG&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 11pt;"&gt;drop&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt; VAR1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; VAR2&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; VAR3&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 11pt; background: white; font-family: 'Courier New';"&gt;run&lt;/STRONG&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;1). First, it takes 3 character variables named VAR1, VAR2 and VAR3 from work.have dataset and then converts each one of them into numeric variables giving names N_VAR1, N_VAR2 and N_VAR3 respectively.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt; text-decoration: underline;"&gt;Whereas in your code, renaming was done first. How in the second code variable conversion happend first?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;2). Then drops 3 character variables named VAR1, VAR2 and VAR3&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;3). Then it gets 3 numeric variables named &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;N_VAR1, N_VAR2 and N_VAR3, and then renames them back into VAR1, VAR2 and VAR3&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;Is this correct?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;Could you please help me to understand this differential behavior of seemingly same two codes.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;M. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Nov 2012 14:20:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Ordering-the-values-in-a-cross-tab-output/m-p/116493#M32137</guid>
      <dc:creator>Mirisage</dc:creator>
      <dc:date>2012-11-09T14:20:49Z</dc:date>
    </item>
    <item>
      <title>Re: Ordering the values in a cross tab output?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Ordering-the-values-in-a-cross-tab-output/m-p/116494#M32138</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A __default_attr="645021" __jive_macro_name="user" class="jive_macro jive_macro_user" data-objecttype="3" href="https://communities.sas.com/"&gt;&lt;/A&gt; The two sets of code appear to be doing mostly the same thing and, yes, your explanations appear to be correct.&amp;nbsp; Are you obtaining different results from the two methods?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The principal differences I see between the two sets of code are that:&lt;/P&gt;&lt;P&gt;1. My code will silently set alpha characters to missing during the conversion&lt;/P&gt;&lt;P&gt;2. You drop the original variables while my code didn't (but easily could have)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As for whether one renames or drops in the set statement, the data statement or in the code itself, is probably just a matter of one's personal preference.&amp;nbsp; I happen to like doing those things in the data and set statements as, there, I know the order in which the statements will be executed, namely alphabetically.&amp;nbsp; Drops are done before Keeps which are done before Renames.&amp;nbsp; Honestly, I've never even considered if there is such a precedence inherent when they are included as separate statements in the datastep.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Nov 2012 14:47:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Ordering-the-values-in-a-cross-tab-output/m-p/116494#M32138</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-11-09T14:47:12Z</dc:date>
    </item>
    <item>
      <title>Re: Ordering the values in a cross tab output?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Ordering-the-values-in-a-cross-tab-output/m-p/116495#M32139</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Art, &lt;/P&gt;&lt;P&gt;Thank you very much for this knowledge, i.e. "Alphabetical execution of "Drop", "Keep" "Rename" statements". &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mirisage&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Nov 2012 18:31:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Ordering-the-values-in-a-cross-tab-output/m-p/116495#M32139</guid>
      <dc:creator>Mirisage</dc:creator>
      <dc:date>2012-11-12T18:31:07Z</dc:date>
    </item>
    <item>
      <title>Re: Ordering the values in a cross tab output?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Ordering-the-values-in-a-cross-tab-output/m-p/116496#M32140</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mirisage,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your last example doesn't work because you moved the RENAME from the SET to the DATA statement.&amp;nbsp; It belongs on the SET statement (not as a matter of syntax, but as a matter of logic for this particular application).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Nov 2012 18:38:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Ordering-the-values-in-a-cross-tab-output/m-p/116496#M32140</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2012-11-12T18:38:00Z</dc:date>
    </item>
  </channel>
</rss>

