<?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 reports side by side in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-reports-side-by-side/m-p/53810#M6675</link>
    <description>HI&lt;BR /&gt;
&lt;BR /&gt;
I am having the output in html format.. This is my proc report code:::::::::::&lt;BR /&gt;
&lt;BR /&gt;
PROC REPORT DATA = RM_MTD;&lt;BR /&gt;
DEFINE RM_CODE/ GROUP 'RM CODE';&lt;BR /&gt;
DEFINE NO_OF_ACC/ANALYSIS 'NO OF ACCOUNTS';&lt;BR /&gt;
DEFINE BAL_USD/ANALYSIS 'BALANCE(USD) in mn';&lt;BR /&gt;
RBREAK AFTER/SUMMARIZE OL;&lt;BR /&gt;
COMPUTE RM_CODE;&lt;BR /&gt;
IF _BREAK_ = '_RBREAK_' THEN RM_CODE = 'TOTAL';&lt;BR /&gt;
IF _BREAK_ = '_RBREAK_' THEN CALL DEFINE(_ROW_,"STYLE","STYLE = [BACKGROUND = LIGHTGREY]");&lt;BR /&gt;
ENDCOMP;&lt;BR /&gt;
RUN;&lt;BR /&gt;
ods html close;&lt;BR /&gt;
&lt;BR /&gt;
PROC REPORT DATA = RM_YTD;&lt;BR /&gt;
DEFINE RM_CODE/ GROUP 'RM CODE';&lt;BR /&gt;
DEFINE NO_OF_ACC/ANALYSIS 'NO OF ACCOUNTS';&lt;BR /&gt;
DEFINE BAL_USD/ANALYSIS 'BALANCE(USD) in mn';&lt;BR /&gt;
RBREAK AFTER/SUMMARIZE OL;&lt;BR /&gt;
COMPUTE RM_CODE;&lt;BR /&gt;
IF _BREAK_ = '_RBREAK_' THEN RM_CODE = 'TOTAL';&lt;BR /&gt;
IF _BREAK_ = '_RBREAK_' THEN CALL DEFINE(_ROW_,"STYLE","STYLE = [BACKGROUND = LIGHTGREY]");&lt;BR /&gt;
ENDCOMP;&lt;BR /&gt;
RUN;&lt;BR /&gt;
ods html close;&lt;BR /&gt;
&lt;BR /&gt;
I want the output of these side by side.....not one below the other</description>
    <pubDate>Thu, 11 Feb 2010 09:26:55 GMT</pubDate>
    <dc:creator>deleted_user</dc:creator>
    <dc:date>2010-02-11T09:26:55Z</dc:date>
    <item>
      <title>proc reports side by side</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-reports-side-by-side/m-p/53808#M6673</link>
      <description>Hi everyone...&lt;BR /&gt;
&lt;BR /&gt;
How can i get three proc reports output side by side?...thanks in advance....</description>
      <pubDate>Sun, 07 Feb 2010 12:49:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-reports-side-by-side/m-p/53808#M6673</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2010-02-07T12:49:55Z</dc:date>
    </item>
    <item>
      <title>Re: proc reports side by side</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-reports-side-by-side/m-p/53809#M6674</link>
      <description>What output destination type are you using?  Suggest sharing your SAS code (PROC  REPORT, ODS, etc.) for useful feedback.  Also, suggest you might search the forum archives and also there are examples at the SAS support  &lt;A href="http://support.sas.com/" target="_blank"&gt;http://support.sas.com/&lt;/A&gt;  website.  For example, ODS PDF (with the COLUMNS=n parameter) and ODS HTMLPANEL may provide what you want - check the available DOC and supplemental technical/conference papers available online.&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.&lt;BR /&gt;
&lt;BR /&gt;
Recommended Google advanced search argumen this topic/post:&lt;BR /&gt;
&lt;BR /&gt;
htmlpanel "side by side" site:sas.com</description>
      <pubDate>Sun, 07 Feb 2010 14:09:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-reports-side-by-side/m-p/53809#M6674</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2010-02-07T14:09:12Z</dc:date>
    </item>
    <item>
      <title>Re: proc reports side by side</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-reports-side-by-side/m-p/53810#M6675</link>
      <description>HI&lt;BR /&gt;
&lt;BR /&gt;
I am having the output in html format.. This is my proc report code:::::::::::&lt;BR /&gt;
&lt;BR /&gt;
PROC REPORT DATA = RM_MTD;&lt;BR /&gt;
DEFINE RM_CODE/ GROUP 'RM CODE';&lt;BR /&gt;
DEFINE NO_OF_ACC/ANALYSIS 'NO OF ACCOUNTS';&lt;BR /&gt;
DEFINE BAL_USD/ANALYSIS 'BALANCE(USD) in mn';&lt;BR /&gt;
RBREAK AFTER/SUMMARIZE OL;&lt;BR /&gt;
COMPUTE RM_CODE;&lt;BR /&gt;
IF _BREAK_ = '_RBREAK_' THEN RM_CODE = 'TOTAL';&lt;BR /&gt;
IF _BREAK_ = '_RBREAK_' THEN CALL DEFINE(_ROW_,"STYLE","STYLE = [BACKGROUND = LIGHTGREY]");&lt;BR /&gt;
ENDCOMP;&lt;BR /&gt;
RUN;&lt;BR /&gt;
ods html close;&lt;BR /&gt;
&lt;BR /&gt;
PROC REPORT DATA = RM_YTD;&lt;BR /&gt;
DEFINE RM_CODE/ GROUP 'RM CODE';&lt;BR /&gt;
DEFINE NO_OF_ACC/ANALYSIS 'NO OF ACCOUNTS';&lt;BR /&gt;
DEFINE BAL_USD/ANALYSIS 'BALANCE(USD) in mn';&lt;BR /&gt;
RBREAK AFTER/SUMMARIZE OL;&lt;BR /&gt;
COMPUTE RM_CODE;&lt;BR /&gt;
IF _BREAK_ = '_RBREAK_' THEN RM_CODE = 'TOTAL';&lt;BR /&gt;
IF _BREAK_ = '_RBREAK_' THEN CALL DEFINE(_ROW_,"STYLE","STYLE = [BACKGROUND = LIGHTGREY]");&lt;BR /&gt;
ENDCOMP;&lt;BR /&gt;
RUN;&lt;BR /&gt;
ods html close;&lt;BR /&gt;
&lt;BR /&gt;
I want the output of these side by side.....not one below the other</description>
      <pubDate>Thu, 11 Feb 2010 09:26:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-reports-side-by-side/m-p/53810#M6675</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2010-02-11T09:26:55Z</dc:date>
    </item>
    <item>
      <title>Re: proc reports side by side</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-reports-side-by-side/m-p/53811#M6676</link>
      <description>It's unclear if you took the opportunity to review any of the recommended SAS documentation and technical/conference paper references on this topic?&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
      <pubDate>Thu, 11 Feb 2010 13:12:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-reports-side-by-side/m-p/53811#M6676</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2010-02-11T13:12:21Z</dc:date>
    </item>
    <item>
      <title>Re: proc reports side by side</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-reports-side-by-side/m-p/53812#M6677</link>
      <description>Hi scott...&lt;BR /&gt;
&lt;BR /&gt;
I have read the documentation and tried that but its not working..the code which i have mentioned will give me two different html outputs ..i want them side by side means adjacent to each other,not one below the other...so if you can please assist................</description>
      <pubDate>Thu, 11 Feb 2010 15:49:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-reports-side-by-side/m-p/53812#M6677</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2010-02-11T15:49:23Z</dc:date>
    </item>
    <item>
      <title>Re: proc reports side by side</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-reports-side-by-side/m-p/53813#M6678</link>
      <description>I see you are closing the ODS HTML destination?&lt;BR /&gt;
&lt;BR /&gt;
Also, if you did try ODS HTMLPANEL as suggested, share that code as well.&lt;BR /&gt;
&lt;BR /&gt;
Otherwise, suggest you contact SAS tech support and open a track, while providing them with all the details of your SAS program and also log outputs, for a thorough diagnosis.&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
      <pubDate>Thu, 11 Feb 2010 17:18:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-reports-side-by-side/m-p/53813#M6678</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2010-02-11T17:18:35Z</dc:date>
    </item>
    <item>
      <title>Re: proc reports side by side</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-reports-side-by-side/m-p/53814#M6679</link>
      <description>Hi:&lt;BR /&gt;
  As Scott recommends, if you cannot make the HTMLPANEL tagset work, then you need to open a track with Tech Support. When I run the examples, as downloadable from this page, I am able to generate side-by-side output. &lt;BR /&gt;
&lt;A href="http://support.sas.com/rnd/base/ods/odsmarkup/htmlpanel.html" target="_blank"&gt;http://support.sas.com/rnd/base/ods/odsmarkup/htmlpanel.html&lt;/A&gt;&lt;BR /&gt;
 &lt;BR /&gt;
  In particular, the PANELOPT.SAS program in the ZIP file shows how to generate 3 side by side tables. Modifying that program to generate 2 tables side-by-side should work for you. If you have not been able to make PANELOPT.SAS work for you, then you should contact Tech Support.&lt;BR /&gt;
  &lt;BR /&gt;
  Remember that if you are using the ODS TAGSETS.HTMLPANEL destination, then you would NOT have 2 ODS HTML CLOSE statements in your code....as shown in the examples for invoking the HTMLPANEL destination.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Thu, 11 Feb 2010 17:55:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-reports-side-by-side/m-p/53814#M6679</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-02-11T17:55:46Z</dc:date>
    </item>
    <item>
      <title>Re: proc reports side by side</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-reports-side-by-side/m-p/53815#M6680</link>
      <description>Thanks scott and cynthia.............</description>
      <pubDate>Fri, 12 Feb 2010 03:09:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-reports-side-by-side/m-p/53815#M6680</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2010-02-12T03:09:21Z</dc:date>
    </item>
  </channel>
</rss>

