<?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: proc report-Display values in millions instead of thousands in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/proc-report-Display-values-in-millions-instead-of-thousands/m-p/485072#M125995</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159549"&gt;@Ronein&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I want to get different results.&lt;/P&gt;
&lt;P&gt;For &amp;nbsp;"a" &amp;nbsp;will get value 6 (because it is 6 millions)&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;For &amp;nbsp;"b" &amp;nbsp;will get value 9&amp;nbsp;(because it is 9&amp;nbsp;millions)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;For total will get value &amp;nbsp;15(because it is&amp;nbsp;15&amp;nbsp;&amp;nbsp;millions)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;However :&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;In your outcome I see &amp;nbsp;6.000.000 for "a"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;In your outcome I see &amp;nbsp;9.000.000 for "b"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;In your outcome I see &amp;nbsp;5.000.000 for 'total' (which is error anyway)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Certainly, you could make the very simple change to the Picture format yourself and solve the problem.&lt;/P&gt;</description>
    <pubDate>Wed, 08 Aug 2018 10:44:46 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2018-08-08T10:44:46Z</dc:date>
    <item>
      <title>proc report-Display values in millions instead of thousands</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-report-Display-values-in-millions-instead-of-thousands/m-p/485016#M125964</link>
      <description>&lt;P&gt;Hello&lt;BR /&gt;I want to display values in millions.&lt;BR /&gt;The row data is displayed in thousands.&lt;BR /&gt;for example: value 1000 is 1 million, value 2000 is 2 million....&lt;BR /&gt;I want that the summary table of proc report will display values(sum ) in millions.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Data tbl;
input ID Team $ y;
cards;
1 a  1000
2 a  2000
3 a  3000
4 b  4000
5 b  5000
;
run;

proc report data=tbl nowd;
  column Team y ;
  define Team / group;
  define y / analysis sum;
  rbreak after / summarize;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 08 Aug 2018 06:50:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-report-Display-values-in-millions-instead-of-thousands/m-p/485016#M125964</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2018-08-08T06:50:19Z</dc:date>
    </item>
    <item>
      <title>Re: proc report-Display values in millions instead of thousands</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-report-Display-values-in-millions-instead-of-thousands/m-p/485042#M125980</link>
      <description>&lt;P&gt;Try using a picture format&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Data tbl;
input ID Team $ y;
cards;
1 a  1000
2 a  2000
3 a  3000
4 b  4000
5 b  5000
;
run;

proc format;
picture million (round fuzz=0)
0 -high = '9.999.999' (prefix='' mult=1000);
run;

proc report data=tbl nowd;
  column Team y ;
  define Team / group;
  define y / analysis sum;
  format y million.;
  rbreak after / summarize;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 08 Aug 2018 08:22:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-report-Display-values-in-millions-instead-of-thousands/m-p/485042#M125980</guid>
      <dc:creator>rudfaden</dc:creator>
      <dc:date>2018-08-08T08:22:39Z</dc:date>
    </item>
    <item>
      <title>Re: proc report-Display values in millions instead of thousands</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-report-Display-values-in-millions-instead-of-thousands/m-p/485065#M125990</link>
      <description>&lt;P&gt;Thank you very much.&lt;/P&gt;&lt;P&gt;I want to get different results.&lt;/P&gt;&lt;P&gt;For &amp;nbsp;"a" &amp;nbsp;will get value 6 (because it is 6 millions)&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;For &amp;nbsp;"b" &amp;nbsp;will get value 9&amp;nbsp;(because it is 9&amp;nbsp;millions)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;For total will get value &amp;nbsp;15(because it is&amp;nbsp;15&amp;nbsp;&amp;nbsp;millions)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;However :&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;In your outcome I see &amp;nbsp;6.000.000 for "a"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;In your outcome I see &amp;nbsp;9.000.000 for "b"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;In your outcome I see &amp;nbsp;5.000.000 for 'total' (which is error anyway)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Aug 2018 10:13:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-report-Display-values-in-millions-instead-of-thousands/m-p/485065#M125990</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2018-08-08T10:13:36Z</dc:date>
    </item>
    <item>
      <title>Re: proc report-Display values in millions instead of thousands</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-report-Display-values-in-millions-instead-of-thousands/m-p/485072#M125995</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159549"&gt;@Ronein&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I want to get different results.&lt;/P&gt;
&lt;P&gt;For &amp;nbsp;"a" &amp;nbsp;will get value 6 (because it is 6 millions)&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;For &amp;nbsp;"b" &amp;nbsp;will get value 9&amp;nbsp;(because it is 9&amp;nbsp;millions)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;For total will get value &amp;nbsp;15(because it is&amp;nbsp;15&amp;nbsp;&amp;nbsp;millions)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;However :&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;In your outcome I see &amp;nbsp;6.000.000 for "a"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;In your outcome I see &amp;nbsp;9.000.000 for "b"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;In your outcome I see &amp;nbsp;5.000.000 for 'total' (which is error anyway)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Certainly, you could make the very simple change to the Picture format yourself and solve the problem.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Aug 2018 10:44:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-report-Display-values-in-millions-instead-of-thousands/m-p/485072#M125995</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2018-08-08T10:44:46Z</dc:date>
    </item>
    <item>
      <title>Re: proc report-Display values in millions instead of thousands</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-report-Display-values-in-millions-instead-of-thousands/m-p/485084#M125998</link>
      <description>&lt;P&gt;proc format;&lt;BR /&gt;picture million (round fuzz=0)&lt;BR /&gt;0 -high = '009.999.999' (prefix='' mult=1000);&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;proc report data=tbl nowd;&lt;BR /&gt;&amp;nbsp; column Team y ;&lt;BR /&gt;&amp;nbsp; define Team / group;&lt;BR /&gt;&amp;nbsp; define y / analysis sum;&lt;BR /&gt;&amp;nbsp; format y million.;&lt;BR /&gt;&amp;nbsp; rbreak after / summarize;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Aug 2018 11:06:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-report-Display-values-in-millions-instead-of-thousands/m-p/485084#M125998</guid>
      <dc:creator>rudfaden</dc:creator>
      <dc:date>2018-08-08T11:06:47Z</dc:date>
    </item>
  </channel>
</rss>

