<?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: ODS RTF Side to Side Graph/Tables in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-Side-to-Side-Graph-Tables/m-p/962900#M26838</link>
    <description>&lt;P&gt;You want this ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let path= c:\temp ;

options nodate nonumber;
ods listing gpath="&amp;amp;path." style=htmlblue image_dpi=300;
ods graphics /width=3in height=3in reset=index noborder imagename='FAS' outputfmt=png ;
proc sgplot data=sashelp.class noautolegend ;
reg x=height y=weight/cli clm;
run;

ods graphics /width=3in height=3in reset=index noborder imagename='PPS' outputfmt=png;
proc sgplot data=sashelp.class;
scatter x=age y=weight;
run;

ods graphics /width=3in height=3in reset=index noborder imagename='SS' outputfmt=png ;
proc sgplot data=sashelp.class ;
ellipse x=height y=weight/group=sex;
scatter x=height y=weight/group=sex;
run;

ods graphics /width=3in height=3in reset=index noborder imagename='S' outputfmt=png;
proc sgplot data=sashelp.class;
scatter x=age y=weight/group=sex datalabel=name;
run;

ods rtf file="&amp;amp;path.\want.rtf" style=minimal dpi=300 ;
data x;
x=' ';y=' ';output;
x=' ';y=' ';output;
run;
title;
proc report data=x nowd noheader style={outputwidth=100% };
column x y;
define x/display;
define y/display;
compute y;
n+1;
if n=1 then do;
call define('x','style','style={ preimage="&amp;amp;path\FAS1.png" bordertopcolor=white borderbottomcolor=white borderrightcolor=white borderleftcolor=white}');
call define('y','style','style={ preimage="&amp;amp;path\PPS1.png" bordertopcolor=white borderbottomcolor=white borderrightcolor=white borderleftcolor=white}');
end;
if n=2 then do;
call define('x','style','style={ preimage="&amp;amp;path\SS1.png" bordertopcolor=white borderbottomcolor=white borderrightcolor=white borderleftcolor=white}');
call define('y','style','style={ preimage="&amp;amp;path\S1.png" bordertopcolor=white borderbottomcolor=white borderrightcolor=white borderleftcolor=white}');
end;
endcomp;
run;

ods rtf close;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1743229826959.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/105746iCCFC29042E00E03E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1743229826959.png" alt="Ksharp_0-1743229826959.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 29 Mar 2025 06:30:48 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2025-03-29T06:30:48Z</dc:date>
    <item>
      <title>ODS RTF Side to Side Graph/Tables</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-Side-to-Side-Graph-Tables/m-p/962831#M26837</link>
      <description>&lt;P&gt;Ods layout isn't supported in ODS RTF.&lt;/P&gt;&lt;P&gt;I have tried&amp;nbsp;ods region column_span=3 style={padding=0 margin=0}; to create 3 columns then do&amp;nbsp;ods region column_span=1 style={width=4in padding=0 margin=0 just=l};&lt;/P&gt;&lt;P&gt;I have tried many things by I can't get the charts side by side.&lt;/P&gt;&lt;P&gt;I have a long code within ods html which contains proc ghart, proc sgplot etc. Some are side by side in the html file.&lt;/P&gt;&lt;P&gt;How can I recreate this within ods rtf?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Mar 2025 14:10:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-Side-to-Side-Graph-Tables/m-p/962831#M26837</guid>
      <dc:creator>paul8</dc:creator>
      <dc:date>2025-03-28T14:10:41Z</dc:date>
    </item>
    <item>
      <title>Re: ODS RTF Side to Side Graph/Tables</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-Side-to-Side-Graph-Tables/m-p/962900#M26838</link>
      <description>&lt;P&gt;You want this ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let path= c:\temp ;

options nodate nonumber;
ods listing gpath="&amp;amp;path." style=htmlblue image_dpi=300;
ods graphics /width=3in height=3in reset=index noborder imagename='FAS' outputfmt=png ;
proc sgplot data=sashelp.class noautolegend ;
reg x=height y=weight/cli clm;
run;

ods graphics /width=3in height=3in reset=index noborder imagename='PPS' outputfmt=png;
proc sgplot data=sashelp.class;
scatter x=age y=weight;
run;

ods graphics /width=3in height=3in reset=index noborder imagename='SS' outputfmt=png ;
proc sgplot data=sashelp.class ;
ellipse x=height y=weight/group=sex;
scatter x=height y=weight/group=sex;
run;

ods graphics /width=3in height=3in reset=index noborder imagename='S' outputfmt=png;
proc sgplot data=sashelp.class;
scatter x=age y=weight/group=sex datalabel=name;
run;

ods rtf file="&amp;amp;path.\want.rtf" style=minimal dpi=300 ;
data x;
x=' ';y=' ';output;
x=' ';y=' ';output;
run;
title;
proc report data=x nowd noheader style={outputwidth=100% };
column x y;
define x/display;
define y/display;
compute y;
n+1;
if n=1 then do;
call define('x','style','style={ preimage="&amp;amp;path\FAS1.png" bordertopcolor=white borderbottomcolor=white borderrightcolor=white borderleftcolor=white}');
call define('y','style','style={ preimage="&amp;amp;path\PPS1.png" bordertopcolor=white borderbottomcolor=white borderrightcolor=white borderleftcolor=white}');
end;
if n=2 then do;
call define('x','style','style={ preimage="&amp;amp;path\SS1.png" bordertopcolor=white borderbottomcolor=white borderrightcolor=white borderleftcolor=white}');
call define('y','style','style={ preimage="&amp;amp;path\S1.png" bordertopcolor=white borderbottomcolor=white borderrightcolor=white borderleftcolor=white}');
end;
endcomp;
run;

ods rtf close;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1743229826959.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/105746iCCFC29042E00E03E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1743229826959.png" alt="Ksharp_0-1743229826959.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 29 Mar 2025 06:30:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-Side-to-Side-Graph-Tables/m-p/962900#M26838</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2025-03-29T06:30:48Z</dc:date>
    </item>
    <item>
      <title>Re: ODS RTF Side to Side Graph/Tables</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-Side-to-Side-Graph-Tables/m-p/962929#M26839</link>
      <description>&lt;P&gt;That's terrific! I posted a complaint on the lack of flexibility of PROC SGPANEL in the community before. Your code is more complex than the code a usual SGPANEL procedure entails, but it's cool.&lt;/P&gt;</description>
      <pubDate>Sat, 29 Mar 2025 13:34:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-Side-to-Side-Graph-Tables/m-p/962929#M26839</guid>
      <dc:creator>Season</dc:creator>
      <dc:date>2025-03-29T13:34:00Z</dc:date>
    </item>
    <item>
      <title>Re: ODS RTF Side to Side Graph/Tables</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-Side-to-Side-Graph-Tables/m-p/962994#M26841</link>
      <description>Perfect! Thank you!</description>
      <pubDate>Mon, 31 Mar 2025 09:13:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-Side-to-Side-Graph-Tables/m-p/962994#M26841</guid>
      <dc:creator>paul8</dc:creator>
      <dc:date>2025-03-31T09:13:33Z</dc:date>
    </item>
  </channel>
</rss>

