<?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: Running frequency in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Running-frequency/m-p/515109#M26289</link>
    <description>&lt;P&gt;one more to find counts&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input id $ characteristic $;
datalines;
id1 RDD
id1 TSS
id2 RDD
id2 TSS
;

proc sort data = have out=have1;
by characteristic;
run;

data want;
do until(last.characteristic);
set have1(keep=characteristic);
by characteristic;
count=sum(count,1);;
end;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Wed, 21 Nov 2018 14:47:08 GMT</pubDate>
    <dc:creator>kiranv_</dc:creator>
    <dc:date>2018-11-21T14:47:08Z</dc:date>
    <item>
      <title>Running frequency</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Running-frequency/m-p/515094#M26283</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;
&lt;P&gt;I have this dataset. I need help urgently on this.&lt;/P&gt;
&lt;TABLE&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="83"&gt;
&lt;P&gt;&lt;STRONG&gt;id&lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="120"&gt;
&lt;P&gt;&lt;STRONG&gt;characteristic&lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="83"&gt;
&lt;P&gt;id1&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="120"&gt;
&lt;P&gt;RDD&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="83"&gt;
&lt;P&gt;id1&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="120"&gt;
&lt;P&gt;TSS&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="83"&gt;
&lt;P&gt;id2&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="120"&gt;
&lt;P&gt;RDD&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="83"&gt;
&lt;P&gt;id2&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="120"&gt;
&lt;P&gt;TSS&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I need the final result table as:&lt;/P&gt;
&lt;TABLE&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="157"&gt;
&lt;P&gt;Characteristic&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="71"&gt;
&lt;P&gt;N&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="78"&gt;
&lt;P&gt;%&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="157"&gt;
&lt;P&gt;RDD&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="71"&gt;
&lt;P&gt;2&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="78"&gt;
&lt;P&gt;100&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="157"&gt;
&lt;P&gt;TSS&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="71"&gt;
&lt;P&gt;2&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="78"&gt;
&lt;P&gt;100&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;how can I accomplish this&lt;/P&gt;
&lt;P&gt;I tried by sorting the data-set by characteristic and it doesn't work.&lt;/P&gt;
&lt;P&gt;proc freq data=have&amp;nbsp;&lt;BR /&gt; by characteristic; &lt;BR /&gt; tables id/out=want&amp;nbsp;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Nov 2018 14:09:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Running-frequency/m-p/515094#M26283</guid>
      <dc:creator>dr2014</dc:creator>
      <dc:date>2018-11-21T14:09:50Z</dc:date>
    </item>
    <item>
      <title>Re: Running frequency</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Running-frequency/m-p/515098#M26284</link>
      <description>&lt;P&gt;Your percent value looks redundant and therefore useless to me.&lt;/P&gt;
&lt;P&gt;Calculate the count like that:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input id $ characteristic $;
cards;
id1 RDD
id1 TSS
id2 RDD
id2 TSS
;
run;

proc sql;
create table want as
select
  characteristic,
  count(*) as N
from have
group by characteristic;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Note how I put your data in a data step with datalines for easy recreation by others. Do so yourself in the future, don't offload your work on somebody else.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Nov 2018 14:20:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Running-frequency/m-p/515098#M26284</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-11-21T14:20:17Z</dc:date>
    </item>
    <item>
      <title>Re: Running frequency</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Running-frequency/m-p/515099#M26285</link>
      <description>&lt;P&gt;Post test data in the form of a datastep:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712" target="_blank"&gt;https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also explain what is "not working".&amp;nbsp; I am going to assume you mean it is taking the percentage as sum from total obs.&amp;nbsp; Maybe something like:&lt;/P&gt;
&lt;PRE&gt;proc sql;
  create table want as
  select a.characteristic,
         a.n,
         (a.n/b.tot)*100 as perc
  from   (select characteristic,count(distinct id) as n from have group by characteristic) a
  full join (select characteristic,count(*) as tot from have group by characteristic) b
  on     a.characteristic=b.characteristic;
quit;&lt;/PRE&gt;</description>
      <pubDate>Wed, 21 Nov 2018 14:21:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Running-frequency/m-p/515099#M26285</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-11-21T14:21:11Z</dc:date>
    </item>
    <item>
      <title>Re: Running frequency</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Running-frequency/m-p/515104#M26286</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in 0in 10pt;"&gt;&lt;SPAN style="color: rgb(51, 51, 51); line-height: 115%; font-family: &amp;quot;Helvetica&amp;quot;,&amp;quot;sans-serif&amp;quot;; font-size: 10.5pt;"&gt;Hi &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;&amp;nbsp; I was looking to summarize the count but since there was a condition that could be repeated for more than an id I was concerned. Also in your code how can I ensure the counts of the condition(N) is&amp;nbsp;among&amp;nbsp; all ids. I mean I don't see id mentioned in the code. or that is not needed.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="token procnames"&gt;proc&lt;/SPAN&gt; &lt;SPAN class="token procnames"&gt;sql&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;BR /&gt;create &lt;SPAN class="token statement"&gt;table&lt;/SPAN&gt; want as &lt;SPAN class="token statement"&gt;select&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp; characteristic&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp; &lt;SPAN class="token function"&gt;count&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;*&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt; as &lt;SPAN class="token function"&gt;N&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="token keyword"&gt;from&lt;/SPAN&gt; have&lt;BR /&gt;&lt;SPAN class="token keyword"&gt;group&lt;/SPAN&gt; &lt;SPAN class="token statement"&gt;by&lt;/SPAN&gt; characteristic&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="token procnames"&gt;quit&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Nov 2018 14:36:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Running-frequency/m-p/515104#M26286</guid>
      <dc:creator>dr2014</dc:creator>
      <dc:date>2018-11-21T14:36:28Z</dc:date>
    </item>
    <item>
      <title>Re: Running frequency</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Running-frequency/m-p/515105#M26287</link>
      <description>&lt;P&gt;If you add&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc print data=want noobs;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;to my previous code, the result&lt;/P&gt;
&lt;PRE&gt;characteristic    N

     RDD          2
     TSS          2
&lt;/PRE&gt;
&lt;P&gt;clearly matches what you posted as the expected result, minus the irrelevant percent values.&lt;/P&gt;
&lt;P&gt;If you have factors that influences these percent values so that they are not 100 all the time, please show so with an expanded dataset.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Nov 2018 14:44:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Running-frequency/m-p/515105#M26287</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-11-21T14:44:32Z</dc:date>
    </item>
    <item>
      <title>Re: Running frequency</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Running-frequency/m-p/515107#M26288</link>
      <description>&lt;P&gt;Hi &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/45151"&gt;@RW9&lt;/a&gt;&amp;nbsp;Its obvious by solution of proc freq&amp;nbsp;was not helpful:&lt;/P&gt;
&lt;P&gt;It gave an error the characteristic variable &amp;nbsp;is not sorted properly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And, the denominator for the percent has to be the total number of distinct ids.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Nov 2018 14:46:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Running-frequency/m-p/515107#M26288</guid>
      <dc:creator>dr2014</dc:creator>
      <dc:date>2018-11-21T14:46:54Z</dc:date>
    </item>
    <item>
      <title>Re: Running frequency</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Running-frequency/m-p/515109#M26289</link>
      <description>&lt;P&gt;one more to find counts&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input id $ characteristic $;
datalines;
id1 RDD
id1 TSS
id2 RDD
id2 TSS
;

proc sort data = have out=have1;
by characteristic;
run;

data want;
do until(last.characteristic);
set have1(keep=characteristic);
by characteristic;
count=sum(count,1);;
end;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 21 Nov 2018 14:47:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Running-frequency/m-p/515109#M26289</guid>
      <dc:creator>kiranv_</dc:creator>
      <dc:date>2018-11-21T14:47:08Z</dc:date>
    </item>
    <item>
      <title>Re: Running frequency</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Running-frequency/m-p/515112#M26290</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/44608"&gt;@dr2014&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/45151"&gt;@RW9&lt;/a&gt;&amp;nbsp;Its obvious by solution of proc freq&amp;nbsp;was not helpful:&lt;/P&gt;
&lt;P&gt;It gave an error the characteristic variable &amp;nbsp;is not sorted properly.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Then sort the dataset.&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;
&lt;P&gt;And, the denominator for the percent has to be the total number of distinct ids.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Do you mean something like this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input id $ characteristic $;
cards;
id1 RDD
id1 TSS
id2 RDD
id2 TSS
id2 RDD
;
run;

proc sql;
create table want as
select
  characteristic,
  count(distinct id) as N,
  calculated N / count(*) as percent format=percent6.
from have
group by characteristic;
quit;

proc print data=want noobs;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt;characteristic    N    percent

     RDD          2      67%  
     TSS          2     100%  
&lt;/PRE&gt;
&lt;P&gt;Once again, &lt;EM&gt;meaningful&lt;/EM&gt; and &lt;EM&gt;usable&lt;/EM&gt; example data with expected result will help us greatly in helping you.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Nov 2018 14:55:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Running-frequency/m-p/515112#M26290</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-11-21T14:55:21Z</dc:date>
    </item>
    <item>
      <title>Re: Running frequency</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Running-frequency/m-p/515119#M26291</link>
      <description>&lt;P&gt;Then sort the data.&amp;nbsp; Also please refer to the guidance on posting new questions - post test data in the form of a datastep, show what "is not working" etc. It is not for me to type test data, then run code to get a log telling me "what is wrong with the code".&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Simply use and alter the code I have provided.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Nov 2018 15:05:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Running-frequency/m-p/515119#M26291</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-11-21T15:05:45Z</dc:date>
    </item>
    <item>
      <title>Re: Running frequency</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Running-frequency/m-p/515131#M26294</link>
      <description>&lt;P&gt;Hi &lt;A href="https://communities.sas.com/t5/forums/replypage/board-id/statistical_procedures/message-id/26287" target="_blank"&gt;@KurtBremser&lt;/A&gt;&amp;nbsp;I&amp;nbsp;am back on this string. I do need help with the complete solution.&amp;nbsp; Right now, this code works for me that is edited from your first code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt; &lt;STRONG&gt;sql&lt;/STRONG&gt;;&lt;/P&gt;
&lt;P&gt;create table want as&lt;/P&gt;
&lt;P&gt;select characteristic, count(distinct id) as n&lt;/P&gt;
&lt;P&gt;from have&lt;/P&gt;
&lt;P&gt;group by characteristic;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;quit&lt;/STRONG&gt;;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, I need the denominator to be the 'total number of distinct ids' to get the percent. How can I accomplish that as a nested select program in sql?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;so basically I need :&lt;/P&gt;
&lt;P&gt;proc sql;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;create table want2 as&lt;/P&gt;
&lt;P&gt;&amp;nbsp; select count (distinct id) as n2&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; from have&amp;nbsp; /* original dataset*/&lt;/P&gt;
&lt;P&gt;quit;&lt;/P&gt;
&lt;P&gt;so this count of distinct ids are not grouped by characteristic and my percent needs to be&lt;/P&gt;
&lt;P&gt;n/n2*100&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this makes sense.&lt;/P&gt;
&lt;P&gt;I have my code as this but I know there is something missing in it&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt; &lt;STRONG&gt;sql&lt;/STRONG&gt;;&lt;/P&gt;
&lt;P&gt;create table want as&lt;/P&gt;
&lt;P&gt;select a.characteristic, a.n, b.n2&lt;/P&gt;
&lt;P&gt;from (select characteristic, count(distinct id) as n from&amp;nbsp;have group by ccs2)&lt;/P&gt;
&lt;P&gt;(select count(distinct id) as n2 from have) b;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;quit&lt;/STRONG&gt;;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;So I want the three columns in the final dataset characteristic, n, n2, percent&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and just to expand the data:&lt;/P&gt;
&lt;TABLE&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="83"&gt;
&lt;P&gt;&lt;STRONG&gt;id&lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="120"&gt;
&lt;P&gt;&lt;STRONG&gt;characteristic&lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="83"&gt;
&lt;P&gt;id1&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="120"&gt;
&lt;P&gt;RDD&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="83"&gt;
&lt;P&gt;id1&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="120"&gt;
&lt;P&gt;TSS&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="83"&gt;
&lt;P&gt;id2&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="120"&gt;
&lt;P&gt;TSS&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="83"&gt;
&lt;P&gt;id2&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="120"&gt;
&lt;P&gt;RDD&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="83"&gt;
&lt;P&gt;id2&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="120"&gt;
&lt;P&gt;GGG&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="83"&gt;
&lt;P&gt;id2&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="120"&gt;
&lt;P&gt;HHH&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;So the output dataset will be&lt;/P&gt;
&lt;TABLE&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="157"&gt;
&lt;P&gt;Characteristic&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="71"&gt;
&lt;P&gt;N&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="78"&gt;
&lt;P&gt;N2&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="78"&gt;
&lt;P&gt;%&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="157"&gt;
&lt;P&gt;RDD&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="71"&gt;
&lt;P&gt;2&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="78"&gt;
&lt;P&gt;2&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="78"&gt;
&lt;P&gt;100&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="157"&gt;
&lt;P&gt;TSS&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="71"&gt;
&lt;P&gt;2&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="78"&gt;
&lt;P&gt;2&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="78"&gt;
&lt;P&gt;100&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="157"&gt;
&lt;P&gt;GGG&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="71"&gt;
&lt;P&gt;1&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="78"&gt;
&lt;P&gt;2&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="78"&gt;
&lt;P&gt;50&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="157"&gt;
&lt;P&gt;HHH&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="71"&gt;
&lt;P&gt;1&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="78"&gt;
&lt;P&gt;2&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="78"&gt;
&lt;P&gt;50&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this makes it all clear. Look forward to your reply.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Nov 2018 15:44:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Running-frequency/m-p/515131#M26294</guid>
      <dc:creator>dr2014</dc:creator>
      <dc:date>2018-11-21T15:44:11Z</dc:date>
    </item>
    <item>
      <title>Re: Running frequency</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Running-frequency/m-p/515302#M26305</link>
      <description>&lt;P&gt;Please.supply.example.data.in.a.usable.form.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Take the data step from my post and expand it. I had to edit your copy/paste from the table viewer once to get that step running, I won't do it again.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Nov 2018 07:25:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Running-frequency/m-p/515302#M26305</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-11-22T07:25:07Z</dc:date>
    </item>
  </channel>
</rss>

