<?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: Duplicate percent column in Frequency table, missing decimal in percent column in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Duplicate-percent-column-in-Frequency-table-missing-decimal-in/m-p/392402#M19217</link>
    <description>&lt;P&gt;Have you changed the template? &amp;nbsp;Run the step below. &amp;nbsp;If you have a copy outside of sashelp, delete it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc template;
list base.freq.onewayfreqs;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/documentation/cdl/en/statug/63347/HTML/default/viewer.htm#statug_odsgraph_sect054.htm" target="_blank"&gt;https://support.sas.com/documentation/cdl/en/statug/63347/HTML/default/viewer.htm#statug_odsgraph_sect054.htm&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 01 Sep 2017 02:00:43 GMT</pubDate>
    <dc:creator>WarrenKuhfeld</dc:creator>
    <dc:date>2017-09-01T02:00:43Z</dc:date>
    <item>
      <title>Duplicate percent column in Frequency table, missing decimal in percent column</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Duplicate-percent-column-in-Frequency-table-missing-decimal-in/m-p/392374#M19215</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ODS RTF FILE =   'S:\blahblah\frequencies.RTF'
STYLE = BARRETTSBLUE STARTPAGE = NO;
ODS NOPROCTITLE;

%MACRO PRINTFREQ (VAR =  );
PROC FREQ DATA =dat._3_subset;
TABLES &amp;amp;VAR.;
WHERE &amp;amp;VAR. NOT IN ('7', '8', '9', '77', '88', '99');
RUN;
%MEND PRINTFREQ;

%PRINTFREQ (VAR=Q1)
%PRINTFREQ (VAR=Q2)
%PRINTFREQ (VAR=Q3)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I am using 9.4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;X64_7PRO platform&lt;/P&gt;&lt;P&gt;X64_7PRO WIN 6.1.7601 Service Pack 1 Workstation&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As you can see in the attachment my output has two percent columns. Can someone tell me why I am getting&amp;nbsp;two percent columns in the output and also why I am not getting a decimal in the percent column?&amp;nbsp; Is it a settings issue?&amp;nbsp; Can you assist me in resetting if needed?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks. L&lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2017 21:09:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Duplicate-percent-column-in-Frequency-table-missing-decimal-in/m-p/392374#M19215</guid>
      <dc:creator>LNEW</dc:creator>
      <dc:date>2017-08-31T21:09:29Z</dc:date>
    </item>
    <item>
      <title>Re: Duplicate percent column in Frequency table, missing decimal in percent column</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Duplicate-percent-column-in-Frequency-table-missing-decimal-in/m-p/392383#M19216</link>
      <description>&lt;P&gt;Try using PROC TABULATE instead of FREQ. You get a lot more control over your output.&lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2017 22:15:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Duplicate-percent-column-in-Frequency-table-missing-decimal-in/m-p/392383#M19216</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-08-31T22:15:49Z</dc:date>
    </item>
    <item>
      <title>Re: Duplicate percent column in Frequency table, missing decimal in percent column</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Duplicate-percent-column-in-Frequency-table-missing-decimal-in/m-p/392402#M19217</link>
      <description>&lt;P&gt;Have you changed the template? &amp;nbsp;Run the step below. &amp;nbsp;If you have a copy outside of sashelp, delete it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc template;
list base.freq.onewayfreqs;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/documentation/cdl/en/statug/63347/HTML/default/viewer.htm#statug_odsgraph_sect054.htm" target="_blank"&gt;https://support.sas.com/documentation/cdl/en/statug/63347/HTML/default/viewer.htm#statug_odsgraph_sect054.htm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Sep 2017 02:00:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Duplicate-percent-column-in-Frequency-table-missing-decimal-in/m-p/392402#M19217</guid>
      <dc:creator>WarrenKuhfeld</dc:creator>
      <dc:date>2017-09-01T02:00:43Z</dc:date>
    </item>
    <item>
      <title>Re: Duplicate percent column in Frequency table, missing decimal in percent column</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Duplicate-percent-column-in-Frequency-table-missing-decimal-in/m-p/392498#M19218</link>
      <description>Thanks so much. This is what I ran and the results were spot on.&lt;BR /&gt;&lt;BR /&gt;ods path sashelp.tmplmst(read) sasuser.templat(update);&lt;BR /&gt;&lt;BR /&gt;ods path sashelp.tmplmst(read);&lt;BR /&gt;proc datasets library=sasuser nolist;&lt;BR /&gt;delete templat(memtype=itemstor);&lt;BR /&gt;run;&lt;BR /&gt;ods path sasuser.templat(update) sashelp.tmplmst(read);&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;proc template;&lt;BR /&gt;list base.freq.onewayfreqs;&lt;BR /&gt;quit;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 01 Sep 2017 12:00:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Duplicate-percent-column-in-Frequency-table-missing-decimal-in/m-p/392498#M19218</guid>
      <dc:creator>LNEW</dc:creator>
      <dc:date>2017-09-01T12:00:05Z</dc:date>
    </item>
    <item>
      <title>Re: Duplicate percent column in Frequency table, missing decimal in percent column</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Duplicate-percent-column-in-Frequency-table-missing-decimal-in/m-p/392499#M19219</link>
      <description>&lt;P&gt;This is what I ran and the results were spot on.&amp;nbsp; Thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Lucida Sans" size="1"&gt;ods&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Lucida Sans" size="1"&gt;path&lt;/FONT&gt;&lt;FONT face="Lucida Sans" size="1"&gt; sashelp.tmplmst(&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Lucida Sans" size="1"&gt;read&lt;/FONT&gt;&lt;FONT face="Lucida Sans" size="1"&gt;) sasuser.templat(&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Lucida Sans" size="1"&gt;update&lt;/FONT&gt;&lt;FONT face="Lucida Sans" size="1"&gt;);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Lucida Sans" size="1"&gt;ods&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Lucida Sans" size="1"&gt;path&lt;/FONT&gt;&lt;FONT face="Lucida Sans" size="1"&gt; sashelp.tmplmst(&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Lucida Sans" size="1"&gt;read&lt;/FONT&gt;&lt;FONT face="Lucida Sans" size="1"&gt;);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Lucida Sans" size="1"&gt;&lt;U&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;/U&gt; &lt;STRONG&gt;&lt;U&gt;datasets&lt;/U&gt;&lt;/STRONG&gt; &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Lucida Sans" size="1"&gt;library&lt;/FONT&gt;&lt;FONT face="Lucida Sans" size="1"&gt;=sasuser &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Lucida Sans" size="1"&gt;nolist&lt;/FONT&gt;&lt;FONT face="Lucida Sans" size="1"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Lucida Sans" size="1"&gt;delete&lt;/FONT&gt;&lt;FONT face="Lucida Sans" size="1"&gt; templat(&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Lucida Sans" size="1"&gt;memtype&lt;/FONT&gt;&lt;FONT face="Lucida Sans" size="1"&gt;=itemstor);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/U&gt;;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Lucida Sans" size="1"&gt;ods&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Lucida Sans" size="1"&gt;path&lt;/FONT&gt;&lt;FONT face="Lucida Sans" size="1"&gt; sasuser.templat(&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Lucida Sans" size="1"&gt;update&lt;/FONT&gt;&lt;FONT face="Lucida Sans" size="1"&gt;) sashelp.tmplmst(&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Lucida Sans" size="1"&gt;read&lt;/FONT&gt;&lt;FONT face="Lucida Sans" size="1"&gt;);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;/U&gt; &lt;STRONG&gt;&lt;U&gt;template&lt;/U&gt;&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Lucida Sans" size="1"&gt;list&lt;/FONT&gt;&lt;FONT face="Lucida Sans" size="1"&gt; base.freq.onewayfreqs;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;quit&lt;/STRONG&gt;&lt;/U&gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Sep 2017 12:01:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Duplicate-percent-column-in-Frequency-table-missing-decimal-in/m-p/392499#M19219</guid>
      <dc:creator>LNEW</dc:creator>
      <dc:date>2017-09-01T12:01:14Z</dc:date>
    </item>
  </channel>
</rss>

