<?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: SAS 'tips' on ODS Excel/Y axis labeling with breaks in Y axis in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/SAS-tips-on-ODS-Excel-Y-axis-labeling-with-breaks-in-Y-axis/m-p/433294#M14964</link>
    <description>&lt;P&gt;I had incidentally figured out the label part-&lt;/P&gt;
&lt;P&gt;For excel-just using an ODS destination&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;ods excel file="/apps/sas/datasets/data137/NCQOS/dev/nc_qos_sandbox/data/cdiff/xxx.xlsx" style=Seaside options(sheet_name="XXX" SHEET_INTERVAL= 'PAGE' autofilter='NO' FROZEN_ROWHEADERS='no' &lt;BR /&gt; embedded_titles='yes' embedded_footnotes='yes' embed_titles_once = 'on'&lt;BR /&gt; embedded_titles='on'&lt;BR /&gt; gridlines='off' START_AT='3,3');&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc report;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;etc etc&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;LB&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 01 Feb 2018 21:46:22 GMT</pubDate>
    <dc:creator>LB</dc:creator>
    <dc:date>2018-02-01T21:46:22Z</dc:date>
    <item>
      <title>SAS 'tips' on ODS Excel/Y axis labeling with breaks in Y axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SAS-tips-on-ODS-Excel-Y-axis-labeling-with-breaks-in-Y-axis/m-p/433240#M14955</link>
      <description>&lt;P&gt;So I have two things I am trying to solve-&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1) I am using&amp;nbsp;vbarparm. Some of the stack bars have very small numbers and so there is no room for numbers.&amp;nbsp; I am attempting to use tips in an ODS excel document-Is this even feasible?&amp;nbsp; Or does it have to be pdf?&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2) Due to the y axis range statement, the y axis labeling seems inoperable. Code and diagram below. Facilities have been deleted.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Lawrence&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc sgplot data=ID_w4g dattrmap=attrmapxe ;&lt;/P&gt;
&lt;P&gt;styleattrs DATACONTRASTCOLORS=(black);&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt; vbarparm category=facid response=numx/group=type grouporder=data dataskin=pressed attrid=MYIDXE TIP=(type) tipformat=(auto)&lt;BR /&gt;groupdisplay=stack ;&lt;BR /&gt; &lt;BR /&gt; YAXIS LABEL = "ABC" ;&lt;BR /&gt; XAXIS LABEL = " " ;&lt;BR /&gt; keylegend /title=' ';&lt;BR /&gt; yaxis ranges=(0-175 1100-1300);&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SAS_example.jpg" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/18257i4CCEB83F3291C970/image-size/large?v=v2&amp;amp;px=999" role="button" title="SAS_example.jpg" alt="SAS_example.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Feb 2018 19:25:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SAS-tips-on-ODS-Excel-Y-axis-labeling-with-breaks-in-Y-axis/m-p/433240#M14955</guid>
      <dc:creator>LB</dc:creator>
      <dc:date>2018-02-01T19:25:02Z</dc:date>
    </item>
    <item>
      <title>Re: SAS 'tips' on ODS Excel/Y axis labeling with breaks in Y axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SAS-tips-on-ODS-Excel-Y-axis-labeling-with-breaks-in-Y-axis/m-p/433267#M14959</link>
      <description>&lt;P&gt;If you have multiple YAXIS statements I think only the last one gets used.&lt;/P&gt;
&lt;P&gt;Try a single statement:&lt;/P&gt;
&lt;P&gt;yaxis ranges=(0-175 1100-1300)&amp;nbsp;&amp;nbsp;&amp;nbsp;LABEL = "ABC"&amp;nbsp; ;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How are you sending the results to Excel?&lt;/P&gt;</description>
      <pubDate>Thu, 01 Feb 2018 20:44:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SAS-tips-on-ODS-Excel-Y-axis-labeling-with-breaks-in-Y-axis/m-p/433267#M14959</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-02-01T20:44:07Z</dc:date>
    </item>
    <item>
      <title>Re: SAS 'tips' on ODS Excel/Y axis labeling with breaks in Y axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SAS-tips-on-ODS-Excel-Y-axis-labeling-with-breaks-in-Y-axis/m-p/433294#M14964</link>
      <description>&lt;P&gt;I had incidentally figured out the label part-&lt;/P&gt;
&lt;P&gt;For excel-just using an ODS destination&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;ods excel file="/apps/sas/datasets/data137/NCQOS/dev/nc_qos_sandbox/data/cdiff/xxx.xlsx" style=Seaside options(sheet_name="XXX" SHEET_INTERVAL= 'PAGE' autofilter='NO' FROZEN_ROWHEADERS='no' &lt;BR /&gt; embedded_titles='yes' embedded_footnotes='yes' embed_titles_once = 'on'&lt;BR /&gt; embedded_titles='on'&lt;BR /&gt; gridlines='off' START_AT='3,3');&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc report;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;etc etc&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;LB&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Feb 2018 21:46:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SAS-tips-on-ODS-Excel-Y-axis-labeling-with-breaks-in-Y-axis/m-p/433294#M14964</guid>
      <dc:creator>LB</dc:creator>
      <dc:date>2018-02-01T21:46:22Z</dc:date>
    </item>
  </channel>
</rss>

