<?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 put outputs of proc reports or proc tabulate and proc report side by side in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-put-outputs-of-proc-reports-or-proc-tabulate-and-proc/m-p/374912#M89814</link>
    <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods layout gridded columns=2 advance=table;
  proc print data=sashelp.class;run;
  proc print data=sashelp.cars(obs=20);run;
ods layout end;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;A href="http://blogs.sas.com/content/iml/2015/12/02/matrices-graphs-gridded-layout.html" target="_blank"&gt;http://blogs.sas.com/content/iml/2015/12/02/matrices-graphs-gridded-layout.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.sas.com/content/iml/2016/03/02/dummy-variables-sasiml.html" target="_blank"&gt;http://blogs.sas.com/content/iml/2016/03/02/dummy-variables-sasiml.html&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 11 Jul 2017 12:12:32 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2017-07-11T12:12:32Z</dc:date>
    <item>
      <title>How to put outputs of proc reports or proc tabulate and proc report side by side</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-put-outputs-of-proc-reports-or-proc-tabulate-and-proc/m-p/374817#M89791</link>
      <description>&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;I have such problem. I create several reports via proc reports and proc tabulate, but they are presented under one another, but I have free space on my scree I would like to put them side&amp;nbsp;by side.&lt;/P&gt;&lt;P&gt;I use SAS Enterprise Guide&lt;/P&gt;&lt;PRE&gt;&lt;BR /&gt;&lt;BR /&gt;title "Sold Items" ;
proc report data=without_colors;
where Date eq '30Jun17'd;	
column Area N_Item_Name Sale_Category;
	define Area/ group width=6;
	define N_Item_Name / Across format=$mdclass. width=6; 
	define Sale_Category / Across width=6;
	
run;


title "Remaining Mobile Devices in the Warehouses" ;
proc report data=r_675_without_colors;
	where New_Date eq '30Jun17'd;	
    column Area N_Item_Name;

    define Area   / group width=6;
	define N_Item_Name / Across format=$mdclass. width=6; 
run;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jul 2017 07:22:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-put-outputs-of-proc-reports-or-proc-tabulate-and-proc/m-p/374817#M89791</guid>
      <dc:creator>Garik</dc:creator>
      <dc:date>2017-07-11T07:22:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to put outputs of proc reports or proc tabulate and proc report side by side</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-put-outputs-of-proc-reports-or-proc-tabulate-and-proc/m-p/374823#M89796</link>
      <description>&lt;P&gt;Please attach a screenshot as image, not as office document.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can create a Report in EG, select File/New/Report.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jul 2017 07:37:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-put-outputs-of-proc-reports-or-proc-tabulate-and-proc/m-p/374823#M89796</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2017-07-11T07:37:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to put outputs of proc reports or proc tabulate and proc report side by side</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-put-outputs-of-proc-reports-or-proc-tabulate-and-proc/m-p/374828#M89798</link>
      <description>&lt;P&gt;You will want to look into gridded outputs to a file format which supports such a thing, the basic output window doesn't, but HTML should:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/odsug/69832/HTML/default/viewer.htm#p0g1r9d5mqtuezn1g3svg7lxabkx.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/odsug/69832/HTML/default/viewer.htm#p0g1r9d5mqtuezn1g3svg7lxabkx.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, avoid posting Office files, you would have seen the recent global problems, a lot came from people downloading office files - they are unsafe.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jul 2017 08:04:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-put-outputs-of-proc-reports-or-proc-tabulate-and-proc/m-p/374828#M89798</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-07-11T08:04:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to put outputs of proc reports or proc tabulate and proc report side by side</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-put-outputs-of-proc-reports-or-proc-tabulate-and-proc/m-p/374912#M89814</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods layout gridded columns=2 advance=table;
  proc print data=sashelp.class;run;
  proc print data=sashelp.cars(obs=20);run;
ods layout end;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;A href="http://blogs.sas.com/content/iml/2015/12/02/matrices-graphs-gridded-layout.html" target="_blank"&gt;http://blogs.sas.com/content/iml/2015/12/02/matrices-graphs-gridded-layout.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.sas.com/content/iml/2016/03/02/dummy-variables-sasiml.html" target="_blank"&gt;http://blogs.sas.com/content/iml/2016/03/02/dummy-variables-sasiml.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jul 2017 12:12:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-put-outputs-of-proc-reports-or-proc-tabulate-and-proc/m-p/374912#M89814</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2017-07-11T12:12:32Z</dc:date>
    </item>
  </channel>
</rss>

