<?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: How to truly format the data ( more than just proc format). in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-truly-format-the-data-more-than-just-proc-format/m-p/577917#M163821</link>
    <description>&lt;P&gt;You can get PROC SUMMARY to create/convert a numeric class variable to character using the MLF CLASS statement option.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format;
   value change(notsorted)
       1,3,8 = 'A'
       2,7= 'B'
       4,5,6,9,10='C';
   run;
data have;
   do code = 1 to 10;
      y=ranuni(1);
      output;
      end;
   run;
proc summary data=have nway;
   class code / mlf order=data preloadfmt;
   format code change.;
   var y;
   output out=_stats_ sum=sumvar n=nvar;
   run;
proc contents varnum;
   run;
proc print;
   run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 295px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/31428i04571DD5801AE7FC/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 30 Jul 2019 22:58:15 GMT</pubDate>
    <dc:creator>data_null__</dc:creator>
    <dc:date>2019-07-30T22:58:15Z</dc:date>
    <item>
      <title>How to truly format the data ( more than just proc format).</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-truly-format-the-data-more-than-just-proc-format/m-p/577855#M163782</link>
      <description>&lt;P&gt;I used proc format to format a variables, want to change the codes (let's say 10 codes)&amp;nbsp;to&amp;nbsp;3 categories, A B C;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc format;&lt;/P&gt;&lt;P&gt;&amp;nbsp;value&amp;nbsp; change&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; 1 = 'A'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; 2= 'B'&lt;/P&gt;&lt;P&gt;&amp;nbsp; ....;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data&amp;nbsp;&amp;nbsp;data1;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set&amp;nbsp; data;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; format codes&amp;nbsp; change.;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; create table example as&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; select counts(var), sum(var)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from table&lt;/P&gt;&lt;P&gt;group by codes;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It seems that proc format only cover the codes with the format, because it's still numeric variable and&lt;/P&gt;&lt;P&gt;when you group by, you still get 10 groups (corresponding to 10 codes), not three groups.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How to group by the three categories?&amp;nbsp;&amp;nbsp; thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jul 2019 18:26:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-truly-format-the-data-more-than-just-proc-format/m-p/577855#M163782</guid>
      <dc:creator>pensarchem</dc:creator>
      <dc:date>2019-07-30T18:26:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to truly format the data ( more than just proc format).</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-truly-format-the-data-more-than-just-proc-format/m-p/577858#M163785</link>
      <description>&lt;P&gt;Maybe this is what you want?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format;
    value change
    1,3,8 = 'A'
    2,7= 'B'
    4,5,6,9,10='C';
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If not, then please provide a more clear example that shows the mapping of the 10 codes into three groups.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But I don't think SQL will recognize these formatted categories, I think SQL will use the unformatted categories. Now, you can do the formatting inside of SQL, or use PROC SUMMARY to get counts and sum by the formatted levels of codes.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have2;
    set have1;
    format codes change.;
run;
proc summary data=have2;
    class codes;
    var var;
    output out=_stats_ sum=sumvar n=nvar;
run;
    &lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 30 Jul 2019 18:35:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-truly-format-the-data-more-than-just-proc-format/m-p/577858#M163785</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-07-30T18:35:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to truly format the data ( more than just proc format).</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-truly-format-the-data-more-than-just-proc-format/m-p/577861#M163786</link>
      <description>PROC SQL doesn't respect formats, but almost all other procs will. Using PROC FREQ or MEANS will give you what you need. If you want to stick with SQL, then you need to actually recode the variables using PUT() to apply the format and then use that new variable as your grouping variable.&lt;BR /&gt;&lt;BR /&gt;select put(var, change.) as newVar</description>
      <pubDate>Tue, 30 Jul 2019 18:42:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-truly-format-the-data-more-than-just-proc-format/m-p/577861#M163786</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-07-30T18:42:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to truly format the data ( more than just proc format).</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-truly-format-the-data-more-than-just-proc-format/m-p/577863#M163788</link>
      <description>&lt;P&gt;Thanks Paige for your input.&lt;/P&gt;&lt;P&gt;&amp;nbsp;I want to hardcode or generated another column to group by the three categories A B C.&amp;nbsp; I like sql more than sas.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;I just tested the&amp;nbsp;&amp;nbsp; put(var, format), it's good.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jul 2019 18:47:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-truly-format-the-data-more-than-just-proc-format/m-p/577863#M163788</guid>
      <dc:creator>pensarchem</dc:creator>
      <dc:date>2019-07-30T18:47:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to truly format the data ( more than just proc format).</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-truly-format-the-data-more-than-just-proc-format/m-p/577866#M163791</link>
      <description>&lt;P&gt;Thanks Reeza.&amp;nbsp;&amp;nbsp; It's good. put(var, change.) works beautifully.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jul 2019 18:48:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-truly-format-the-data-more-than-just-proc-format/m-p/577866#M163791</guid>
      <dc:creator>pensarchem</dc:creator>
      <dc:date>2019-07-30T18:48:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to truly format the data ( more than just proc format).</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-truly-format-the-data-more-than-just-proc-format/m-p/577867#M163792</link>
      <description>SQL works for some things, but isn't optimal for all. Especially as you get into multiple variables and statistics. However, what is usually optimal is using what you know.</description>
      <pubDate>Tue, 30 Jul 2019 18:51:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-truly-format-the-data-more-than-just-proc-format/m-p/577867#M163792</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-07-30T18:51:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to truly format the data ( more than just proc format).</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-truly-format-the-data-more-than-just-proc-format/m-p/577917#M163821</link>
      <description>&lt;P&gt;You can get PROC SUMMARY to create/convert a numeric class variable to character using the MLF CLASS statement option.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format;
   value change(notsorted)
       1,3,8 = 'A'
       2,7= 'B'
       4,5,6,9,10='C';
   run;
data have;
   do code = 1 to 10;
      y=ranuni(1);
      output;
      end;
   run;
proc summary data=have nway;
   class code / mlf order=data preloadfmt;
   format code change.;
   var y;
   output out=_stats_ sum=sumvar n=nvar;
   run;
proc contents varnum;
   run;
proc print;
   run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 295px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/31428i04571DD5801AE7FC/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jul 2019 22:58:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-truly-format-the-data-more-than-just-proc-format/m-p/577917#M163821</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2019-07-30T22:58:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to truly format the data ( more than just proc format).</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-truly-format-the-data-more-than-just-proc-format/m-p/577923#M163825</link>
      <description>&lt;P&gt;Guru&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15410"&gt;@data_null__&lt;/a&gt;&amp;nbsp; been following you for long and the time has come yet again to knock at your intelligence door to bother.&lt;/P&gt;
&lt;P&gt;I am unable to understand notsorted in proc format viz. the intuition behind it. When and if you have a moment, some more notes plz.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and as always thank you * infinite!&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jul 2019 23:18:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-truly-format-the-data-more-than-just-proc-format/m-p/577923#M163825</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-07-30T23:18:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to truly format the data ( more than just proc format).</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-truly-format-the-data-more-than-just-proc-format/m-p/577926#M163828</link>
      <description>&lt;P&gt;I suspect it's related to the last note here:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4 class="xis-argument"&gt;NOTSORTED&lt;/H4&gt;
&lt;DIV class="xis-argumentDescription"&gt;
&lt;P&gt;&lt;SPAN class="xis-shortDescription"&gt;stores values or ranges in the order in which you define them.&lt;/SPAN&gt; &lt;SPAN class="xis-paraSimpleFirst"&gt;If you do not specify NOTSORTED, then values or ranges are stored in sorted order by default, and SAS uses a binary searching algorithm to locate the range that a particular value falls into. If you specify NOTSORTED, then SAS searches each range in the order in which you define them until a match is found.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="xis-paraSimple"&gt;Use NOTSORTED if one of the following is true:&lt;/P&gt;
&lt;DIV class="xis-listUnordered"&gt;
&lt;UL&gt;
&lt;LI&gt;
&lt;DIV id="p1sdsxjl4zkljbn1scbtf2nq8g1l" class="xis-item"&gt;
&lt;DIV id="p0jyg6b4qhjkyyn1i098t86d4yei" class="xis-paraSimpleFirst"&gt;You know the likelihood of certain ranges occurring, and you want your format to search those ranges first to save processing time.&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV id="p01u866cgwj60jn1akcdmlaenhg0" class="xis-item"&gt;
&lt;DIV id="n0wkknvfu7pwf0n1l4g7lkrzcb9q" class="xis-paraSimpleFirst"&gt;You want to preserve the order that you define ranges when you print a description of the format using the FMTLIB option.&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV id="p0w6tajqihuh6tn17j98250b8uok" class="xis-item"&gt;
&lt;DIV id="n13kjd5hi1k06zn1hnxfv0pkoks5" class="xis-paraSimpleFirst"&gt;&lt;FONT color="#FF9900"&gt;&lt;STRONG&gt;You want to preserve the order that you define ranges when you use the ORDER=DATA option and the PRELOADFMT option to analyze class variables in PROC MEANS, PROC SUMMARY, or PROC TABULATE.&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Tue, 30 Jul 2019 23:51:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-truly-format-the-data-more-than-just-proc-format/m-p/577926#M163828</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-07-30T23:51:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to truly format the data ( more than just proc format).</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-truly-format-the-data-more-than-just-proc-format/m-p/577927#M163829</link>
      <description>Not sorted keeps the range label combinations in the order that you&lt;BR /&gt;specify them. That really works well  if you’re making a table of&lt;BR /&gt;demography in a clinical trial and everywhere else too##- Please type your&lt;BR /&gt;reply above this line. No attachments. -##</description>
      <pubDate>Wed, 31 Jul 2019 00:05:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-truly-format-the-data-more-than-just-proc-format/m-p/577927#M163829</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2019-07-31T00:05:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to truly format the data ( more than just proc format).</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-truly-format-the-data-more-than-just-proc-format/m-p/577931#M163831</link>
      <description>&lt;P&gt;Thank you Reeza &amp;amp; DN for the responses. Looks like I need some real scenario to get the mind to think along those lines so that I grip the intutitive sense. Nonetheless, I have added to my notes&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jul 2019 00:55:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-truly-format-the-data-more-than-just-proc-format/m-p/577931#M163831</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-07-31T00:55:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to truly format the data ( more than just proc format).</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-truly-format-the-data-more-than-just-proc-format/m-p/577933#M163833</link>
      <description>You'll remember it easily after you've forgotten to use it once or twice and get reports all out of order.</description>
      <pubDate>Wed, 31 Jul 2019 01:04:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-truly-format-the-data-more-than-just-proc-format/m-p/577933#M163833</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-07-31T01:04:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to truly format the data ( more than just proc format).</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-truly-format-the-data-more-than-just-proc-format/m-p/578177#M163938</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/138205"&gt;@novinosrin&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Guru&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15410"&gt;@data_null__&lt;/a&gt;&amp;nbsp; been following you for long and the time has come yet again to knock at your intelligence door to bother.&lt;/P&gt;
&lt;P&gt;I am unable to understand notsorted in proc format viz. the intuition behind it. When and if you have a moment, some more notes plz.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and as always thank you * infinite!&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/138205"&gt;@novinosrin&lt;/a&gt; I used a few options that are not actually necessary to the point I was trying to make.&amp;nbsp; I think one of &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/273559"&gt;@pensarchem&lt;/a&gt; wants was to convert the variable CODE to character with the formatted value.&amp;nbsp; The conversion to character is accomplished with the CLASS statement option MLF.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/31449iE4FD0625D9F66BF8/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jul 2019 18:38:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-truly-format-the-data-more-than-just-proc-format/m-p/578177#M163938</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2019-07-31T18:38:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to truly format the data ( more than just proc format).</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-truly-format-the-data-more-than-just-proc-format/m-p/578416#M164043</link>
      <description>&lt;P&gt;Guru&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15410"&gt;@data_null__&lt;/a&gt;&amp;nbsp; Thank you &amp;amp; Sorry for the late acknowledgement as I was away. Okay, the conversion part is now clear and pretty well comprehended. The institution to &lt;STRONG&gt;notsorted&lt;/STRONG&gt; in format is something I am understanding but not practically appreciating it yet. I will have to wait on a real scenario as you know I am outside of clinical domain&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Aug 2019 14:07:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-truly-format-the-data-more-than-just-proc-format/m-p/578416#M164043</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-08-01T14:07:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to truly format the data ( more than just proc format).</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-truly-format-the-data-more-than-just-proc-format/m-p/578433#M164058</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/138205"&gt;@novinosrin&lt;/a&gt; you're welcome and thank you.&amp;nbsp; I think these links to the sample library may be helpful examples of NOTSORTED ORDER=DATA and MULTILABEL formats.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/kb/12/904.html" target="_blank"&gt;http://support.sas.com/kb/12/904.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/kb/45/458.html" target="_blank"&gt;http://support.sas.com/kb/45/458.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/kb/23/846.html" target="_blank"&gt;http://support.sas.com/kb/23/846.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/kb/23/847.html" target="_blank"&gt;http://support.sas.com/kb/23/847.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Aug 2019 14:35:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-truly-format-the-data-more-than-just-proc-format/m-p/578433#M164058</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2019-08-01T14:35:23Z</dc:date>
    </item>
  </channel>
</rss>

