<?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 place 2 tables horizontally for easy comparison in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/how-to-place-2-tables-horizontally-for-easy-comparison/m-p/587662#M18858</link>
    <description>&lt;P&gt;To expand on Dan's suggestion, see&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/sasdummy/2015/11/23/ods-statement-options-to-change/" target="_self"&gt;Using the ODS statement to add layers in your ODS sandwich&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/iml/2015/12/02/matrices-graphs-gridded-layout.html" target="_self"&gt;Arrange matrices and graphs in a gridded layout&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 10 Sep 2019 19:54:14 GMT</pubDate>
    <dc:creator>Rick_SAS</dc:creator>
    <dc:date>2019-09-10T19:54:14Z</dc:date>
    <item>
      <title>how to place 2 tables horizontally for easy comparison</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/how-to-place-2-tables-horizontally-for-easy-comparison/m-p/587633#M18856</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;title " actual_rev" ;
proc tabulate data=have;
   class decile agegroup ;
   var actual_rev;
   table decile=' ', 
        agegroup *EXP_RPP=''*mean=''
         /misstext=' ' box=decile;
run; 

title "proj_rev" ;
proc tabulate data=have;
   class decile agegroup ;
   var proj_rev;
   table decile=' ', 
       agegroup *proj_rev=''*mean=''
         /misstext=' ' box=decile ;
run; &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I have to compare 2 tables here. projected revenue and actual revenue (table is by decile and age group).&amp;nbsp;&lt;/P&gt;&lt;P&gt;When i run in SAS, I get tables one after another vertically.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My boss wants it placed horizontally to each other for easy comparison.&amp;nbsp; in this one i went to excel and used pivot table.. (please ignore the values inside and the name of the variables)&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="putthisplease.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/32354i77312D031FAF6A25/image-size/large?v=v2&amp;amp;px=999" role="button" title="putthisplease.PNG" alt="putthisplease.PNG" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="wewantac tual.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/32355i61D34E41592C8976/image-size/large?v=v2&amp;amp;px=999" role="button" title="wewantac tual.PNG" alt="wewantac tual.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Sep 2019 18:40:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/how-to-place-2-tables-horizontally-for-easy-comparison/m-p/587633#M18856</guid>
      <dc:creator>harsh0404</dc:creator>
      <dc:date>2019-09-10T18:40:39Z</dc:date>
    </item>
    <item>
      <title>Re: how to place 2 tables horizontally for easy comparison</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/how-to-place-2-tables-horizontally-for-easy-comparison/m-p/587636#M18857</link>
      <description>&lt;P&gt;Something like the following should work for you:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods _all_ close;
ods html;
ods layout gridded columns=2;
ods region;
proc print data=sashelp.class; run;
ods region;
proc print data=sashelp.class; run;
ods layout end;
ods html close;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Hope this helps!&lt;/P&gt;
&lt;P&gt;Dan&lt;/P&gt;</description>
      <pubDate>Tue, 10 Sep 2019 18:50:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/how-to-place-2-tables-horizontally-for-easy-comparison/m-p/587636#M18857</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2019-09-10T18:50:31Z</dc:date>
    </item>
    <item>
      <title>Re: how to place 2 tables horizontally for easy comparison</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/how-to-place-2-tables-horizontally-for-easy-comparison/m-p/587662#M18858</link>
      <description>&lt;P&gt;To expand on Dan's suggestion, see&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/sasdummy/2015/11/23/ods-statement-options-to-change/" target="_self"&gt;Using the ODS statement to add layers in your ODS sandwich&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/iml/2015/12/02/matrices-graphs-gridded-layout.html" target="_self"&gt;Arrange matrices and graphs in a gridded layout&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Sep 2019 19:54:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/how-to-place-2-tables-horizontally-for-easy-comparison/m-p/587662#M18858</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2019-09-10T19:54:14Z</dc:date>
    </item>
  </channel>
</rss>

