<?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 EXCEL OUTPUT (GRAPHS)  NOT rendering in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/ODS-EXCEL-OUTPUT-GRAPHS-NOT-rendering/m-p/358080#M12430</link>
    <description>&lt;P&gt;Verify your SAS version, I believe ODS is experimental before T3.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Proc setinit;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/resources/papers/proceedings16/SAS5642-2016.pdf" target="_blank"&gt;https://support.sas.com/resources/papers/proceedings16/SAS5642-2016.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PS. This assumes your code works and it's just an issue getting it into the Excel report.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And re-using code on here is fine, ideally credited but not required. Just don't say it's yours if it's not.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 12 May 2017 00:41:21 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2017-05-12T00:41:21Z</dc:date>
    <item>
      <title>ODS EXCEL OUTPUT (GRAPHS)  NOT rendering</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/ODS-EXCEL-OUTPUT-GRAPHS-NOT-rendering/m-p/358060#M12428</link>
      <description>&lt;P&gt;hello all- little stuck.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am running SAS &amp;nbsp;9.4 (I think TM3) off a linux server. &amp;nbsp;I am attempting to export graphs into an excel report w/o success.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From the code below, which I borrowed off the internet, the table exports just fine, but the graph does not render within the finalized excel document although it does show in the results table.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I apologize in advance if someone recognizes their code, but this is inncoculous vs PHI data that I am trying to render-&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any suggestions welcomed. &amp;nbsp;Not sure if I should contact SAS technical support.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data my_data;&lt;BR /&gt;input item $ 1-6 Amount Purchase_date date9.;&lt;BR /&gt;datalines;&lt;BR /&gt;ITEM A 11.8 14nov2016&lt;BR /&gt;ITEM B 10.5 01jul2016&lt;BR /&gt;ITEM C 8.8 22feb2015&lt;BR /&gt;ITEM D 6.8 01apr2012&lt;BR /&gt;ITEM E 3.9 03aug2016&lt;BR /&gt;ITEM F 2.3 02mar2016&lt;BR /&gt;;&lt;BR /&gt;run;&lt;BR /&gt; &lt;BR /&gt;ods listing close;&lt;BR /&gt;ods excel file="/apps/sas/datasets/data137/NCQOS/dev/nc_qos_sandbox/data/dfrx/xxx.xlsx" style=htmlblue;&lt;BR /&gt; &lt;BR /&gt;goptions gunit=pct htitle=6 ftitle="albany amt/bold"&lt;BR /&gt;htext=3.5 ftext="albany amt/bold" ctext=gray33;&lt;BR /&gt; &lt;BR /&gt;axis1 label=none value=(justify=right);&lt;BR /&gt;axis2 label=('AMOUNT') order=(0 to 12 by 2) minor=none offset=(0,0);&lt;BR /&gt; &lt;BR /&gt;pattern v=solid color=dodgerblue;&lt;BR /&gt; &lt;BR /&gt;ods excel options(SHEET_NAME='Graph');&lt;BR /&gt; &lt;BR /&gt;title1 ls=1.5 "Simple Bar Chart";&lt;BR /&gt;proc gchart data=my_data;&lt;BR /&gt;format amount dollar5.0;&lt;BR /&gt;hbar item / discrete type=sum sumvar=amount nostats&lt;BR /&gt;maxis=axis1 raxis=axis2 noframe&lt;BR /&gt;autoref clipref cref=graycc;&lt;BR /&gt;run;&lt;BR /&gt; &lt;BR /&gt;ods excel options(SHEET_NAME='Data' EMBEDDED_TITLES='yes' START_AT='3,2');&lt;BR /&gt; &lt;BR /&gt;title c=gray33 "Raw Data Values";&lt;BR /&gt;proc print data=my_data noobs label;&lt;BR /&gt;label purchase_date='Purchase date';&lt;BR /&gt;format amount dollar5.2;&lt;BR /&gt;format purchase_date date9.;&lt;BR /&gt;run;&lt;BR /&gt; &lt;BR /&gt;quit;&lt;BR /&gt;ods excel close;&lt;/P&gt;</description>
      <pubDate>Thu, 11 May 2017 22:43:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/ODS-EXCEL-OUTPUT-GRAPHS-NOT-rendering/m-p/358060#M12428</guid>
      <dc:creator>LB</dc:creator>
      <dc:date>2017-05-11T22:43:12Z</dc:date>
    </item>
    <item>
      <title>Re: ODS EXCEL OUTPUT (GRAPHS)  NOT rendering</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/ODS-EXCEL-OUTPUT-GRAPHS-NOT-rendering/m-p/358080#M12430</link>
      <description>&lt;P&gt;Verify your SAS version, I believe ODS is experimental before T3.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Proc setinit;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/resources/papers/proceedings16/SAS5642-2016.pdf" target="_blank"&gt;https://support.sas.com/resources/papers/proceedings16/SAS5642-2016.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PS. This assumes your code works and it's just an issue getting it into the Excel report.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And re-using code on here is fine, ideally credited but not required. Just don't say it's yours if it's not.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 12 May 2017 00:41:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/ODS-EXCEL-OUTPUT-GRAPHS-NOT-rendering/m-p/358080#M12430</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-05-12T00:41:21Z</dc:date>
    </item>
    <item>
      <title>Re: ODS EXCEL OUTPUT (GRAPHS)  NOT rendering</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/ODS-EXCEL-OUTPUT-GRAPHS-NOT-rendering/m-p/358085#M12431</link>
      <description>&lt;P&gt;Try setting:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;options dev=PNG;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;before running the GCHART step.&lt;/P&gt;</description>
      <pubDate>Fri, 12 May 2017 01:41:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/ODS-EXCEL-OUTPUT-GRAPHS-NOT-rendering/m-p/358085#M12431</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2017-05-12T01:41:58Z</dc:date>
    </item>
    <item>
      <title>Re: ODS EXCEL OUTPUT (GRAPHS)  NOT rendering</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/ODS-EXCEL-OUTPUT-GRAPHS-NOT-rendering/m-p/358236#M12435</link>
      <description>&lt;P&gt;Reeza;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Current version: 9.04.01M3P062415 per proc setinit; &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Lawrence&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 12 May 2017 14:04:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/ODS-EXCEL-OUTPUT-GRAPHS-NOT-rendering/m-p/358236#M12435</guid>
      <dc:creator>LB</dc:creator>
      <dc:date>2017-05-12T14:04:18Z</dc:date>
    </item>
    <item>
      <title>Re: ODS EXCEL OUTPUT (GRAPHS)  NOT rendering</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/ODS-EXCEL-OUTPUT-GRAPHS-NOT-rendering/m-p/358240#M12437</link>
      <description>&lt;P&gt;Chris-&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Chicken dinner we have a winner!&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you all for your quick and helpful responses!&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Lawrence&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 12 May 2017 14:10:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/ODS-EXCEL-OUTPUT-GRAPHS-NOT-rendering/m-p/358240#M12437</guid>
      <dc:creator>LB</dc:creator>
      <dc:date>2017-05-12T14:10:35Z</dc:date>
    </item>
    <item>
      <title>Re: ODS EXCEL OUTPUT (GRAPHS)  NOT rendering</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/ODS-EXCEL-OUTPUT-GRAPHS-NOT-rendering/m-p/358284#M12443</link>
      <description>&lt;P&gt;And yet another reason to move to SGPLOT.&lt;/P&gt;</description>
      <pubDate>Fri, 12 May 2017 17:01:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/ODS-EXCEL-OUTPUT-GRAPHS-NOT-rendering/m-p/358284#M12443</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-05-12T17:01:23Z</dc:date>
    </item>
    <item>
      <title>Re: ODS EXCEL OUTPUT (GRAPHS)  NOT rendering</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/ODS-EXCEL-OUTPUT-GRAPHS-NOT-rendering/m-p/358298#M12445</link>
      <description>&lt;P&gt;Totally forgot about SGPLOT. Been awhile since I &amp;nbsp;have dealt &amp;nbsp;with ODs graphics. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks -This is working much better!&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Lawrence&amp;nbsp;&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;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 12 May 2017 17:36:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/ODS-EXCEL-OUTPUT-GRAPHS-NOT-rendering/m-p/358298#M12445</guid>
      <dc:creator>LB</dc:creator>
      <dc:date>2017-05-12T17:36:37Z</dc:date>
    </item>
  </channel>
</rss>

