<?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: How do I make the second row full height, so that all the text appears in the box? in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-do-I-make-the-second-row-full-height-so-that-all-the-text/m-p/604269#M23509</link>
    <description>absolute_row_height works like the format painter in excel. If you set the first row to say 20, then all rows will be 20. if you set the first row to 20, then the second row to 30, then every other row will be 20,30,20,30,20,30, etc. In order to get excel to use the standard height, you use zero. So if you want to set the height of the two top rows, but row three through the eof can all be regular/auto, then you would have to know the number of rows in order to put in enough zeros to cover all rows or the 20,30 itteriation will repeat once all the zero rows are exhausted.&lt;BR /&gt;I know I could do a vlookup or data step or proc sql to get the number or rows, then set up an array or loop to print out a string that has as many zeros as rows, but that seems like an overkill on program to do something that should be pretty straight forward.</description>
    <pubDate>Thu, 14 Nov 2019 20:24:34 GMT</pubDate>
    <dc:creator>cuevasj</dc:creator>
    <dc:date>2019-11-14T20:24:34Z</dc:date>
    <item>
      <title>How do I make the second row full height, so that all the text appears in the box?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-do-I-make-the-second-row-full-height-so-that-all-the-text/m-p/603672#M23500</link>
      <description>&lt;P&gt;I have grouped headers, and I need the header lines on line two (2) to show completely.&amp;nbsp; See attached excel file to see what I am talking about.&amp;nbsp; when I use row_heights='0,0,0,40', both rows 1 and 2 are enlarged rather than just row 2.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data coqui;&lt;BR /&gt;set sashelp.cars;&lt;BR /&gt;spacer=' ';&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;ods excel file="\\t002pmid03\sasdata\cuevas\example_header.xlsx" &amp;lt;&amp;lt;&amp;lt; change to a location that will work for you&amp;nbsp;&lt;BR /&gt;style=plateau&lt;BR /&gt;options(frozen_headers='2'&lt;BR /&gt;autofilter='1-4'&lt;BR /&gt;orientation='landscape'&lt;BR /&gt;row_repeat='1-2'&lt;BR /&gt;embed_footnotes_once='On'&lt;BR /&gt;absolute_column_width='16,16,36,5,5,5,5,5,5,5,5,5,5,5,5,5,5,1,5,5,5,5,5,5,5,5,5,5,5,5'&lt;BR /&gt;sheet_name='ES PMA 1 - Projection');&lt;BR /&gt;proc report data=coqui misssing nowd split='~' spanrows&lt;BR /&gt;style(header)={font_face=Calibri font_size=13pt just=c vjust=b tagattr='wraptext:no' background=white font_weight=bold borderwidth=2 bordercolor=black}&lt;BR /&gt;style(column)={font_face=Calibri font_size=10pt just=c color=BLACK tagattr='wraptext:no' background=white borderwidth=1 bordercolor=black} ;&lt;BR /&gt;columns (&lt;BR /&gt;('SAS Help Cars Data'&lt;BR /&gt;make model type origin driveTrain)&lt;BR /&gt;&lt;BR /&gt;('SAS Help Cars Data Details'&lt;BR /&gt;MSRP invoice engineSize cylinders horsepower MPG_city MPG_highway)&lt;BR /&gt;(' ' spacer )&lt;BR /&gt;('SAS Help Cars: More data'&lt;BR /&gt;weight wheelbase length )&lt;BR /&gt;);&lt;BR /&gt;define make / display style(column)={just=l tagattr='wraptext:no' width=100%} 'Region Sup';&lt;BR /&gt;define model / display style(column)={just=l tagattr='wraptext:no' width=100%} 'Exec Dir';&lt;BR /&gt;define type / display style(column)={just=l tagattr='wraptext:no' width=100%} 'School';&lt;BR /&gt;define origin / display style(column)={just=c} style(header)={vjust=m background=#DDEBF7 tagattr='Format:@ rotate:90 wraptext:no' width=100%}'Title 1';&lt;BR /&gt;define driveTrain / display style(column)={just=c} style(header)={background=#C2A2EB tagattr='Format:@ rotate:90 wraptext:no' width=100%}'PMA 1 ELA Ach';&lt;BR /&gt;define MSRP / display style(column)={just=c} style(header)={background=#C2A2EB tagattr='Format:@ rotate:90 wraptext:no' width=100%}'PMA 1 ELA Gain';&lt;BR /&gt;define invoice / display style(column)={just=c} style(header)={background=#C2A2EB tagattr='Format:@ rotate:90 wraptext:no' width=100%}'PMA 1 ELA BQ';&lt;BR /&gt;define engineSize / display style(column)={just=c} style(header)={background=#ADDE7D tagattr='Format:@ rotate:90 wraptext:no' width=100%}'PMA 1 Math Ach';&lt;BR /&gt;define cylinders / display style(column)={just=c} style(header)={background=#ADDE7D tagattr='Format:@ rotate:90 wraptext:no' width=100%}'PMA 1 Math Gain';&lt;BR /&gt;define horsepower / display style(column)={just=c} style(header)={background=#ADDE7D tagattr='Format:@ rotate:90 wraptext:no' width=100%}'PMA 1 Math BQ';&lt;BR /&gt;define MPG_city / display style(column)={just=c} style(header)={background=#9BF0F4 tagattr='Format:@ rotate:90 wraptext:no' width=100%}'PMA 1 Science';&lt;BR /&gt;define MPG_highway / display style(column)={just=c} style(header)={background=#facff3 tagattr='Format:@ rotate:90 wraptext:no' width=100%}'PMA 1 Total Points Earned';&lt;BR /&gt;&lt;BR /&gt;define spacer / display style(column)={background=white} style(header)={background=white tagattr='Format:@ rotate:90 wraptext:no' width=100%}' ';&lt;BR /&gt;&lt;BR /&gt;define weight / display style(column)={just=c} style(header)={background=#C2A2EB tagattr='Format:@ rotate:90 wraptext:no' width=100%}'2018-19 ELA Ach';&lt;BR /&gt;define wheelbase / display style(column)={just=c} style(header)={background=#C2A2EB tagattr='Format:@ rotate:90 wraptext:no' width=100%}'2018-19 ELA Gain';&lt;BR /&gt;define length / display style(column)={just=c} style(header)={background=#C2A2EB tagattr='Format:@ rotate:90 wraptext:no' width=100%}'2018-19 ELA BQ';&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="excel header issue.jpg" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/33920i56987665CC2FC091/image-size/large?v=v2&amp;amp;px=999" role="button" title="excel header issue.jpg" alt="excel header issue.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Nov 2019 18:57:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-do-I-make-the-second-row-full-height-so-that-all-the-text/m-p/603672#M23500</guid>
      <dc:creator>cuevasj</dc:creator>
      <dc:date>2019-11-12T18:57:38Z</dc:date>
    </item>
    <item>
      <title>Re: How do I make the second row full height, so that all the text appears in the box?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-do-I-make-the-second-row-full-height-so-that-all-the-text/m-p/603746#M23505</link>
      <description>&lt;P&gt;Did you see this paper?&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.sas.com/content/dam/SAS/support/en/sas-global-forum-proceedings/2018/2479-2018.pdf" target="_blank"&gt;https://www.sas.com/content/dam/SAS/support/en/sas-global-forum-proceedings/2018/2479-2018.pdf&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Nov 2019 03:23:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-do-I-make-the-second-row-full-height-so-that-all-the-text/m-p/603746#M23505</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2019-11-13T03:23:13Z</dc:date>
    </item>
    <item>
      <title>Re: How do I make the second row full height, so that all the text appears in the box?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-do-I-make-the-second-row-full-height-so-that-all-the-text/m-p/603847#M23506</link>
      <description>Yes, thank you ChrisNZ. However the only thing I could see that addressed my issue is perhaps using absolute_row_height, but in order to use this, I would need to know, before the proc report executed, how many rows were produced so I could do something like this:&lt;BR /&gt;&lt;BR /&gt;absolute_row_height='20,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0'&lt;BR /&gt;&lt;BR /&gt;There just has to be a better way.</description>
      <pubDate>Wed, 13 Nov 2019 13:01:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-do-I-make-the-second-row-full-height-so-that-all-the-text/m-p/603847#M23506</guid>
      <dc:creator>cuevasj</dc:creator>
      <dc:date>2019-11-13T13:01:39Z</dc:date>
    </item>
    <item>
      <title>Re: How do I make the second row full height, so that all the text appears in the box?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-do-I-make-the-second-row-full-height-so-that-all-the-text/m-p/604017#M23507</link>
      <description>&lt;P&gt;What if you only specify the first rows' height?&lt;/P&gt;</description>
      <pubDate>Thu, 14 Nov 2019 05:43:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-do-I-make-the-second-row-full-height-so-that-all-the-text/m-p/604017#M23507</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2019-11-14T05:43:14Z</dc:date>
    </item>
    <item>
      <title>Re: How do I make the second row full height, so that all the text appears in the box?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-do-I-make-the-second-row-full-height-so-that-all-the-text/m-p/604269#M23509</link>
      <description>absolute_row_height works like the format painter in excel. If you set the first row to say 20, then all rows will be 20. if you set the first row to 20, then the second row to 30, then every other row will be 20,30,20,30,20,30, etc. In order to get excel to use the standard height, you use zero. So if you want to set the height of the two top rows, but row three through the eof can all be regular/auto, then you would have to know the number of rows in order to put in enough zeros to cover all rows or the 20,30 itteriation will repeat once all the zero rows are exhausted.&lt;BR /&gt;I know I could do a vlookup or data step or proc sql to get the number or rows, then set up an array or loop to print out a string that has as many zeros as rows, but that seems like an overkill on program to do something that should be pretty straight forward.</description>
      <pubDate>Thu, 14 Nov 2019 20:24:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-do-I-make-the-second-row-full-height-so-that-all-the-text/m-p/604269#M23509</guid>
      <dc:creator>cuevasj</dc:creator>
      <dc:date>2019-11-14T20:24:34Z</dc:date>
    </item>
    <item>
      <title>Re: How do I make the second row full height, so that all the text appears in the box?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-do-I-make-the-second-row-full-height-so-that-all-the-text/m-p/604338#M23510</link>
      <description>&lt;P&gt;&lt;EM&gt;&amp;gt; absolute_row_height works like the format painter in excel.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;I see. It looks like the solution is the unwieldy long list of zeros then.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&amp;gt; that seems like an overkill on program to do something that should be pretty straight forward.&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;This looks like an Excel limitation (feature even, and I am no fan of Excel) more than SAS one.&lt;/P&gt;
&lt;P&gt;Since you are showing several variables side by side, you can't define the height when defining the variable.&lt;/P&gt;
&lt;P&gt;So using the Excel built-in formatting capability seems logical to me.&lt;/P&gt;
&lt;P&gt;How would you like the SAS syntax to be?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Nov 2019 23:30:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-do-I-make-the-second-row-full-height-so-that-all-the-text/m-p/604338#M23510</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2019-11-14T23:30:18Z</dc:date>
    </item>
    <item>
      <title>Re: How do I make the second row full height, so that all the text appears in the box?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-do-I-make-the-second-row-full-height-so-that-all-the-text/m-p/604353#M23511</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; I see two possible solutions.&lt;/P&gt;
&lt;P&gt;1) If you want to stick with vertical headers, you can make BOTH of the first header rows tall enough for the text and then after the file is opened in Excel, only the top row has to change. (Personally, I do not recommend because screen reader programs for visually impaired will frequently have issues with vertically oriented headers.) that will look like THIS:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="excel_opt1.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/33988iAA5A44644B92A22B/image-size/large?v=v2&amp;amp;px=999" role="button" title="excel_opt1.png" alt="excel_opt1.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This leaves you with both of the header rows the specified height (2"), but that is better than using the absolute row heights approach. At least this leaves you with just 1 row to adjust. On the other hand, my understanding most screen reader programs for the visually impaired will spell out the header starting with the top letter in the cell, not the bottom letter in the cell so your vertical headers will be unintelligible to the person using a reading program.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;or&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2) Abandon the rotated Vertical Headers and let SAS make the second row as tall as it needs to be. Will look like THIS:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="excel_opt2.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/33989iC3799CC115390C08/image-size/large?v=v2&amp;amp;px=999" role="button" title="excel_opt2.png" alt="excel_opt2.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's the revised code for #2:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data coqui;
set sashelp.cars(obs=15);
spacer=' ';
run;

ods excel file="c:\temp\examp_hdr_alt.xlsx"  
    style=plateau
	options(orientation='landscape'
            embed_footnotes_once='On'
            absolute_column_width='15,15,30,7,7,7,7,7,7,7,7,7,1,8,8,8'
            sheet_name='ES PMA 1 - Projection');
proc report data=coqui misssing nowd split='~' spanrows
style(header)={font_face=Calibri font_size=13pt just=c vjust=b 
               background=white font_weight=bold borderwidth=2 bordercolor=black}
style(column)={font_face=Calibri font_size=10pt just=c color=BLACK 
               tagattr='wraptext:no' background=white borderwidth=1 bordercolor=black} ;
columns (('SAS Help Cars Data'make model type origin driveTrain)
         ('SAS Help Cars Data Details'
           MSRP invoice engineSize cylinders horsepower MPG_city MPG_highway)
         (' ' spacer )
         ('SAS Help Cars: More data'weight wheelbase length ));

define make / display style(column)={just=l  } 'Region Sup';
define model / display style(column)={just=l  } 'Exec Dir';
define type / display style(column)={just=l  } 'School';
define origin / display style(column)={just=c} 
       style(header)={vjust=m background=#DDEBF7 tagattr='Format:@' }'Title 1';
define driveTrain / display style(column)={just=c} 
       style(header)={background=#C2A2EB tagattr='Format:@' }'PMA 1 ELA Ach';
define MSRP / display style(column)={just=c} 
       style(header)={background=#C2A2EB tagattr='Format:@' }'PMA 1 ELA Gain';
define invoice / display style(column)={just=c} 
       style(header)={background=#C2A2EB tagattr='Format:@' }'PMA 1 ELA BQ';
define engineSize / display style(column)={just=c} 
       style(header)={background=#ADDE7D tagattr='Format:@' }'PMA 1 Math Ach';
define cylinders / display style(column)={just=c} 
       style(header)={background=#ADDE7D tagattr='Format:@' }'PMA 1 Math Gain';
define horsepower / display style(column)={just=c} 
       style(header)={background=#ADDE7D tagattr='Format:@' }'PMA 1 Math BQ';
define MPG_city / display style(column)={just=c} 
       style(header)={background=#9BF0F4 tagattr='Format:@' }'PMA 1 Science';
define MPG_highway / display style(column)={just=c} 
       style(header)={background=#facff3 tagattr='Format:@' }'PMA 1 Total Points Earned';
define spacer / display ' ' style(column)={background=white} 
       style(header)={background=white foreground=white};
define weight / display style(column)={just=c} 
       style(header)={background=#C2A2EB tagattr='Format:@' }'2018-19 ELA Ach';
define wheelbase / display style(column)={just=c} 
       style(header)={background=#C2A2EB tagattr='Format:@' }'2018-19 ELA Gain';
define length / display style(column)={just=c} 
       style(header)={background=#C2A2EB tagattr='Format:@' }'2018-19 ELA BQ';
run;
ods excel close;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Hope this helps,&lt;/P&gt;
&lt;P&gt;Cynthia&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2019 00:18:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-do-I-make-the-second-row-full-height-so-that-all-the-text/m-p/604353#M23511</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2019-11-15T00:18:35Z</dc:date>
    </item>
    <item>
      <title>Re: How do I make the second row full height, so that all the text appears in the box?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-do-I-make-the-second-row-full-height-so-that-all-the-text/m-p/604979#M23512</link>
      <description>perhaps a backslash and then a "norepeat" ?&lt;BR /&gt;&lt;BR /&gt;Absolute_Row_Height='15,30,12' \ norepeat</description>
      <pubDate>Mon, 18 Nov 2019 13:04:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-do-I-make-the-second-row-full-height-so-that-all-the-text/m-p/604979#M23512</guid>
      <dc:creator>cuevasj</dc:creator>
      <dc:date>2019-11-18T13:04:37Z</dc:date>
    </item>
    <item>
      <title>Re: How do I make the second row full height, so that all the text appears in the box?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-do-I-make-the-second-row-full-height-so-that-all-the-text/m-p/605062#M23513</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; When I look in the documentation &lt;A href="https://go.documentation.sas.com/?docsetId=odsug&amp;amp;docsetTarget=p09n5pw9ol0897n1qe04zeur27rv.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en"&gt;https://go.documentation.sas.com/?docsetId=odsug&amp;amp;docsetTarget=p09n5pw9ol0897n1qe04zeur27rv.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en&lt;/A&gt; for ODS EXCEL, I do NOT see a \norepeat option. The doc says that the absolute_row_height is used for EACH row:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ods_excel_row_height.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/34060i7C8BAA49C53A529C/image-size/large?v=v2&amp;amp;px=999" role="button" title="ods_excel_row_height.png" alt="ods_excel_row_height.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't think you can make it work the way you envision.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cynthia&lt;/P&gt;</description>
      <pubDate>Mon, 18 Nov 2019 15:51:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-do-I-make-the-second-row-full-height-so-that-all-the-text/m-p/605062#M23513</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2019-11-18T15:51:44Z</dc:date>
    </item>
    <item>
      <title>Re: How do I make the second row full height, so that all the text appears in the box?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-do-I-make-the-second-row-full-height-so-that-all-the-text/m-p/605125#M23514</link>
      <description>ChrisNZ was asking me IF it were an option, how would I envision that it would work, so that was my response to him.&lt;BR /&gt;I am going to try the route of a data step (or two) that counts rows, then loops thorough and gives me a string of comma separated zeros.&lt;BR /&gt;Thanks to you both for responding.</description>
      <pubDate>Mon, 18 Nov 2019 17:51:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-do-I-make-the-second-row-full-height-so-that-all-the-text/m-p/605125#M23514</guid>
      <dc:creator>cuevasj</dc:creator>
      <dc:date>2019-11-18T17:51:34Z</dc:date>
    </item>
    <item>
      <title>Re: How do I make the second row full height, so that all the text appears in the box?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-do-I-make-the-second-row-full-height-so-that-all-the-text/m-p/605172#M23515</link>
      <description>Hi:&lt;BR /&gt;  Before you go down that road, I'd encourage you to open a track with Tech Support to find out what the limit is for a suboption string like you envision you will need. I suspect that for a smallish sheet, the absolute_row_height with a bunch of zeroes would be OK. But I worry that there might be a limit on the size of that string you pass. Tech Support would be able to investigate and verify before you take this approach.&lt;BR /&gt;Cynthia</description>
      <pubDate>Mon, 18 Nov 2019 19:31:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-do-I-make-the-second-row-full-height-so-that-all-the-text/m-p/605172#M23515</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2019-11-18T19:31:04Z</dc:date>
    </item>
    <item>
      <title>Re: How do I make the second row full height, so that all the text appears in the box?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-do-I-make-the-second-row-full-height-so-that-all-the-text/m-p/605209#M23517</link>
      <description>&lt;P&gt;&lt;EM&gt;&amp;gt; and then a "norepeat" ?&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;This could work if the no-repeat feature is supported my Excel, which you said it is not.&lt;/P&gt;
&lt;P&gt;Otherwise, asking SAS to have more features than Excel to create Excel formatting, while of course useful, is a very slippery slope.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Nov 2019 21:03:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-do-I-make-the-second-row-full-height-so-that-all-the-text/m-p/605209#M23517</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2019-11-18T21:03:19Z</dc:date>
    </item>
  </channel>
</rss>

