<?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 Print rotate the header text? in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Print-rotate-the-header-text/m-p/337047#M63049</link>
    <description>&lt;P&gt;You are right&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;that actually answered my question &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I ended up just sending them virtcal however as my main unstated goal was reduce wated column space&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 01 Mar 2017 16:10:24 GMT</pubDate>
    <dc:creator>robm</dc:creator>
    <dc:date>2017-03-01T16:10:24Z</dc:date>
    <item>
      <title>Proc Print rotate the header text?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Print-rotate-the-header-text/m-p/336725#M63028</link>
      <description>&lt;P&gt;I have a simple proc print&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;
&lt;PRE&gt;proc print data=ROBM.QUAL102b
&amp;nbsp;style (table) = [bordercolor=LIGR bordercollapse=collapse BORDERCOLOR=LIGGR cellpadding=2pt cellspacing = 0.0pt &amp;nbsp;borderwidth=0.2pt JUST=left]
&amp;nbsp;style (data) = [background=white bordercolor=BWH fontsize=&amp;amp;FONTSIZE]
&amp;nbsp;style (obs) = [background=beige] noobs;
quit;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would like to rotate the headers ...how do I do that?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/7498i67D264E21A420E9C/image-size/original?v=1.0&amp;amp;px=-1" border="0" alt="RotateTableHeaders.PNG" title="RotateTableHeaders.PNG" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2017 20:47:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Print-rotate-the-header-text/m-p/336725#M63028</guid>
      <dc:creator>robm</dc:creator>
      <dc:date>2017-02-28T20:47:57Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Print rotate the header text?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Print-rotate-the-header-text/m-p/336767#M63031</link>
      <description>&lt;P&gt;If having the output created in an html file, the following is one option:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;/* Rotate column headings using the ODS HTML5 destination */

proc template;
   define style styles.test;
      parent=styles.htmlblue;
         class header / 
            prehtml="&amp;lt;div style=""transform:rotate(-45deg)""&amp;gt;"
            posthtml="&amp;lt;/div&amp;gt;";
   end;
run;

ods html5 file="/folders/myfolders/rotated.html" style=styles.test;

proc print data=sashelp.class;
run;

ods html5 close;
&lt;/PRE&gt;
&lt;P&gt;HTH,&lt;/P&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2017 22:37:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Print-rotate-the-header-text/m-p/336767#M63031</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2017-02-28T22:37:09Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Print rotate the header text?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Print-rotate-the-header-text/m-p/336970#M63043</link>
      <description>&lt;P&gt;Thanks Art&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;that did Kind of work for me , my main goal is to shrink down the columns so I will go with this "heading=v" doesn't look as good as your solution however.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;proc print data=ROBM.QUAL102b heading=v noobs label
	style (table) =  [bordercolor=LIGR bordercollapse=collapse BORDERCOLOR=LIGGR cellpadding=2pt cellspacing = 0.0pt borderwidth=0.2pt JUST=left]
	style (data) = [background=white bordercolor=BWH fontsize=&amp;amp;FONTSIZE]
	style (obs) = [background=beige] noobs;
quit;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Mar 2017 13:38:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Print-rotate-the-header-text/m-p/336970#M63043</guid>
      <dc:creator>robm</dc:creator>
      <dc:date>2017-03-01T13:38:33Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Print rotate the header text?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Print-rotate-the-header-text/m-p/336999#M63045</link>
      <description>&lt;P&gt;I proposed the rotated header as that is what your example looked like.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Mar 2017 14:35:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Print-rotate-the-header-text/m-p/336999#M63045</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2017-03-01T14:35:24Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Print rotate the header text?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Print-rotate-the-header-text/m-p/337047#M63049</link>
      <description>&lt;P&gt;You are right&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;that actually answered my question &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I ended up just sending them virtcal however as my main unstated goal was reduce wated column space&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Mar 2017 16:10:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Print-rotate-the-header-text/m-p/337047#M63049</guid>
      <dc:creator>robm</dc:creator>
      <dc:date>2017-03-01T16:10:24Z</dc:date>
    </item>
  </channel>
</rss>

