<?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: Rotating column header in proc report in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Rotating-column-header-in-proc-report/m-p/581390#M13673</link>
    <description>Hi Cindy,&lt;BR /&gt;I am unable to access the link on your response, could you please attached a copy of the paper.&lt;BR /&gt;&lt;A href="http://www.nesug.org/Proceedings/nesug03/at/at007.pdf" target="_blank"&gt;http://www.nesug.org/Proceedings/nesug03/at/at007.pdf&lt;/A&gt;&lt;BR /&gt;Thank you&lt;BR /&gt;</description>
    <pubDate>Thu, 15 Aug 2019 13:09:16 GMT</pubDate>
    <dc:creator>Zandi</dc:creator>
    <dc:date>2019-08-15T13:09:16Z</dc:date>
    <item>
      <title>Rotating column header in proc report</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Rotating-column-header-in-proc-report/m-p/581353#M13663</link>
      <description>&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to rotate column headers (90 deg)&amp;nbsp;in proc report and the output should be in a pdf file. example of my code is as below.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%LET Reports = \\him\DataStore\Internal\HIM_Water_Quality_Administration\GPsites\Catchment;

ODS _ALL_ Close;
ODS ESCAPECHAR = '~'; 
ODS pdf FILE = "&amp;amp;Reports\test&amp;amp;pdf_file" ;


PROC REPORT DATA=sashelp.cars split='*' spanrows 
 	  style (column) = [fontsize=5.5pt /*cellheight=0.15in*/ font=("Arial",18pt,Normal)]
      style (header) = [fontsize=5.5pt /*backgroundcolor = lightblue*/ fontweight = bold cellheight = 18.08mm 
						font=("Arial",18pt,Normal) frame=void htmlstyle="mso-rotate:90; height:50pt"]
      style (report) = [fontsize=5.5pt /*cellheight = 0.15in*/ font=("Arial",18pt,Normal) borderColor=BLACK] /*headline ls=100*/;

	  title1 j=l font=Arial bold height=1.2 cars;
where make in ('Acura', 'Audi');
column  make type EngineSize Cylinders Horsepower Weight;
DEFINE make/ 'make' group STYLE(COLUMN) = [cellheight = 0.15IN vjust=middle JUST = left ];
DEFINE type/'type' group STYLE (COLUMN) =[width=15% cellheight = 0.15IN font=("Arial",12pt,Normal) vjust=center];
DEFINE EngineSize/'EngineSize' order DISPLAY  STYLE (COLUMN) = [CELLWIDTH = 0.3IN cellheight = 0.15IN JUST = l font=("Arial",12pt,Normal)];
DEFINE Cylinders/'Cylinders' DISPLAY  STYLE (COLUMN) = [CELLWIDTH = 0.3IN cellheight = 0.15IN JUST = l font=("Arial",12pt,Normal)];
DEFINE Horsepower/'Horsepower' DISPLAY  STYLE (COLUMN) = [CELLWIDTH = 0.3IN cellheight = 0.15IN JUST = l font=("Arial",12pt,Normal)];
DEFINE Weight/'Weight' DISPLAY  STYLE (COLUMN) = [CELLWIDTH = 0.3IN cellheight = 0.15IN JUST = l font=("Arial",12pt,Normal)];

RUN;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;The below statement yield the desired output, however it is in word not in pdf&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods tagsets.rtf file="&amp;amp;Reports\Blesbokspruit Catchment.pdf"
OPTIONS(TRHDR="\trrh2750"
TROWHDRCELL="\cltxbtlr" ) style=styles.minimal;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 15 Aug 2019 07:06:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Rotating-column-header-in-proc-report/m-p/581353#M13663</guid>
      <dc:creator>Zandi</dc:creator>
      <dc:date>2019-08-15T07:06:36Z</dc:date>
    </item>
    <item>
      <title>Re: Rotating column header in proc report</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Rotating-column-header-in-proc-report/m-p/581387#M13671</link>
      <description>&lt;A href="https://communities.sas.com/t5/SAS-in-Health-Care-Related/How-to-rotate-column-header-in-proc-report/td-p/38901" target="_blank"&gt;https://communities.sas.com/t5/SAS-in-Health-Care-Related/How-to-rotate-column-header-in-proc-report/td-p/38901&lt;/A&gt;</description>
      <pubDate>Thu, 15 Aug 2019 12:59:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Rotating-column-header-in-proc-report/m-p/581387#M13671</guid>
      <dc:creator>tomrvincent</dc:creator>
      <dc:date>2019-08-15T12:59:01Z</dc:date>
    </item>
    <item>
      <title>Re: Rotating column header in proc report</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Rotating-column-header-in-proc-report/m-p/581390#M13673</link>
      <description>Hi Cindy,&lt;BR /&gt;I am unable to access the link on your response, could you please attached a copy of the paper.&lt;BR /&gt;&lt;A href="http://www.nesug.org/Proceedings/nesug03/at/at007.pdf" target="_blank"&gt;http://www.nesug.org/Proceedings/nesug03/at/at007.pdf&lt;/A&gt;&lt;BR /&gt;Thank you&lt;BR /&gt;</description>
      <pubDate>Thu, 15 Aug 2019 13:09:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Rotating-column-header-in-proc-report/m-p/581390#M13673</guid>
      <dc:creator>Zandi</dc:creator>
      <dc:date>2019-08-15T13:09:16Z</dc:date>
    </item>
  </channel>
</rss>

