<?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 RTF columns too wide in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-columns-too-wide/m-p/501823#M21859</link>
    <description>&lt;P&gt;Did you try&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;style(column)={cellwidth= 5%}&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;or&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc report data=sashelp.class nowd style={outputwidth=10%};
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 05 Oct 2018 11:03:59 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2018-10-05T11:03:59Z</dc:date>
    <item>
      <title>ODS RTF columns too wide</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-columns-too-wide/m-p/501811#M21858</link>
      <description>&lt;P&gt;hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My&amp;nbsp;SAS code works well when exporting compact tables&amp;nbsp;via ODS RTF and PROC REPORT. However, the exported table can have columns too wide when there are just a few columns in the table. I've tried to change the linesize&amp;nbsp;(OPTIONS LD=80) and cellwidth&amp;nbsp;in my individual DEFINE statements (e.g. DEFINE variable / style(column)={cellwidth= 1cm} ...) Unfortunately, all this setting has no effect on my exported table, which has columns too wide leaving large white space between columns:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SAS_ODS_RTF_column_width_unadjusted.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/23802i881BAD2349F84A4F/image-size/large?v=v2&amp;amp;px=999" role="button" title="SAS_ODS_RTF_column_width_unadjusted.png" alt="SAS_ODS_RTF_column_width_unadjusted.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I had to save the RTF as a docx and manually adjust the column width:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SAS_ODS_RTF_column_width_adjusted.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/23803iC66A811DB0716D50/image-size/large?v=v2&amp;amp;px=999" role="button" title="SAS_ODS_RTF_column_width_adjusted.png" alt="SAS_ODS_RTF_column_width_adjusted.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But it would be great to be able to do this, either reducing the table size or column width, in SAS. I hate to mouse clicking in Microsoft Word.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is my SAS macro for writing individual DEFINE statement:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro def_group(	cVar		/*character variable*/
									,option					/*option= order : duplicated rows shown as blank, SAS will reorder your data */
																/*option= group : duplicated rows shown as blank, SAS doesn't reorder your data */
									,cName				/*name of the character variable*/	
									,isFmt=N				/*apply a format to the variable or not*/	 
									,cFmt=					/*which format*/	
									,cWide=25pt		/*cell width*/
									,headerAlign=center 	/*alignment of header text in a column: left, center, right*/
									,colAlign=right 			/*alignment of content in a column: left, center, right, d (decimal point) */
									,marginRight=0
									,background=white 		/*color of background in a column*/
									,foreground=black		/*color of foreground (i.e. font color) in a column*/
									);

	define	&amp;amp;cVar.	/	&amp;amp;option. "&amp;amp;cName."  order=data 
		%if &amp;amp;isFmt.=Y %then 
			%do;
				format= &amp;amp;cFmt.
				/*style(column)={just=left cellwidth= &amp;amp;cWide.}*/
				style(header)={just=&amp;amp;headerAlign.}
				style(column)={just=&amp;amp;colAlign. cellwidth= &amp;amp;cWide. rightmargin=&amp;amp;marginRight. background=&amp;amp;background. foreground=&amp;amp;foreground.};	/*replace order with &amp;amp;option. in the future*/
			%end;
		%else
			%do;
				style(header)={just=&amp;amp;headerAlign.}
				/*style(column)={just=left cellwidth= &amp;amp;cWide.}*/ /*replace order with &amp;amp;option. in the future*/
				style(column)={just=&amp;amp;colAlign. cellwidth= &amp;amp;cWide. rightmargin=&amp;amp;marginRight. background=&amp;amp;background. foreground=&amp;amp;foreground.};
			%end;
	
%mend def_group;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;and this is how the macro is called:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%def_group(	cVar=target_phenotype,	option=group, cName=Target phenotype,	 cWide=3 cm, headerAlign=left,colAlign=left);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here are my system options which are set before ODS RTF is run:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options	missing = ' '  	/*Specifies the character to print for missing numeric values.*/ 
			center 			/*Specifies whether to center or left align SAS procedure output*/
			nodate 			/*suppress default print of data time that this SAS program executed*/
			nonumber 	/*suppress default print of page number on first title line of each page*/
			orientation=portrait 	/*orientation=landscape*/
			LS= 80 /*each line of output to contain no more than 200 characters ( LS stands for "linesize")*/
		;
TITLE1; TITLE2;
/*------------------------------------------------------changing table margins------------------------------------------------------*/
options	bottommargin = 	0.5 cm 
	   		topmargin = 			0.5 cm 
	   		rightmargin = 			0.5 cm /*0.5in */
	   		leftmargin = 			0.5 cm /*0.5in */
			; 

/*suppress the warning that a quoted string that exceeds 262 characters in length*/
options NOQUOTELENMAX ; 

/* first tell ODS what character will be used as the ODS ESCAPECHAR character value*/
ods escapechar='~';
ods escapechar='^';
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If the layout is more adjustable in other format (e.g. ODS PDF) than RTF, I will be happy to learn that format.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Oct 2018 10:34:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-columns-too-wide/m-p/501811#M21858</guid>
      <dc:creator>Chang</dc:creator>
      <dc:date>2018-10-05T10:34:24Z</dc:date>
    </item>
    <item>
      <title>Re: ODS RTF columns too wide</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-columns-too-wide/m-p/501823#M21859</link>
      <description>&lt;P&gt;Did you try&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;style(column)={cellwidth= 5%}&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;or&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc report data=sashelp.class nowd style={outputwidth=10%};
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 05 Oct 2018 11:03:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-columns-too-wide/m-p/501823#M21859</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2018-10-05T11:03:59Z</dc:date>
    </item>
    <item>
      <title>Re: ODS RTF columns too wide</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-columns-too-wide/m-p/501847#M21861</link>
      <description>&lt;P&gt;hi Keshan,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've just tried to add style(column) {cellwidth= 5%} in my DEFINE statements or in the options of my PROC REPORT. Neither changed the layout of my exported table. I am still&amp;nbsp;seeing the same wide columns. I guess users have&amp;nbsp;less control on the layout when exporting the table as an external file than the result in SAS output window.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Oct 2018 11:53:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-columns-too-wide/m-p/501847#M21861</guid>
      <dc:creator>Chang</dc:creator>
      <dc:date>2018-10-05T11:53:59Z</dc:date>
    </item>
    <item>
      <title>Re: ODS RTF columns too wide</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-columns-too-wide/m-p/501946#M21862</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/30542"&gt;@Chang&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;hi Keshan,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've just tried to add style(column) {cellwidth= 5%} in my DEFINE statements or in the options of my PROC REPORT. Neither changed the layout of my exported table. I am still&amp;nbsp;seeing the same wide columns. I guess users have&amp;nbsp;less control on the layout when exporting the table as an external file than the result in SAS output window.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;You should include the ODS destination code and the entire Proc Report code&amp;nbsp;in your example code. There are possible interactions between proc level options and define settings and we can't see both.&lt;/P&gt;
&lt;P&gt;Also the "macro" you show only affects character variables (says so in the definition) but your output appears to contain a number of numeric columns that are also "wider" in the output than you apparently want.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Did you have a working example before attempting to create the macro(s) that may be involved?&lt;/P&gt;
&lt;P&gt;Example data or using a common SAS supplied data set such as SASHELP.CLASS also helps.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Oct 2018 15:29:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-columns-too-wide/m-p/501946#M21862</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-10-05T15:29:17Z</dc:date>
    </item>
    <item>
      <title>Re: ODS RTF columns too wide</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-columns-too-wide/m-p/502098#M21863</link>
      <description>&lt;P&gt;Also try&amp;nbsp;&lt;/P&gt;
&lt;P&gt;options leftmargin=20cm rightmargin=20cm;&lt;/P&gt;</description>
      <pubDate>Sat, 06 Oct 2018 10:04:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-columns-too-wide/m-p/502098#M21863</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2018-10-06T10:04:32Z</dc:date>
    </item>
    <item>
      <title>Re: ODS RTF columns too wide</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-columns-too-wide/m-p/502139#M21864</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; I always think it's a bad idea to "over-control" the column widths and give them a percent unless you are absolutely sure about the margins for the output and the number of columns in the output. I prefer to use style(report) and change width on the PROC REPORT statement like this:&lt;/P&gt;
&lt;P&gt;Example 1 and 2: Margins .5in all around, orientation=portrait -- only vary WIDTH=&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ex_1_2.png" style="width: 541px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/23833iD7409599AB39C22D/image-size/large?v=v2&amp;amp;px=999" role="button" title="ex_1_2.png" alt="ex_1_2.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Example 3 and 4: Margins 1.5 in all around, orientation=portrait -- only vary WIDTH=&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ex_3_4.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/23834i3D53695D7FA3721C/image-size/large?v=v2&amp;amp;px=999" role="button" title="ex_3_4.png" alt="ex_3_4.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There are only a few places in PROC REPORT that the simple STYLE= with a (location) is used -- mostly in BREAK, RBREAK and COMPUTE statements. All the rest of the time, you should always specify STYLE(REPORT), STYLE(HEADER), STYLE(COLUMN), STYLE(SUMMARY), STYLE(LINES) if you are putting overrides in the PROC REPORT or DEFINE statements (define supports HEADER and COLUMN).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; The original complaint was that the TARGET_PHENOTYPE column was too wide. Since no data was posted, I just used SASHELP.CLASS again. But if I needed to control the width of one column, I would not use percents and I would not combine a DEFINE width with a REPORT width change. I would do something like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Example 5: Control all widths in DEFINE&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ex_5.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/23835iAF011EB460BF1FDA/image-size/large?v=v2&amp;amp;px=999" role="button" title="ex_5.png" alt="ex_5.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Before you macro-ize anything, you should be sure that you have code (for all permutations) that creates the output you want. If you started with code that worked and then it didn't work correctly after using macro code, it is possible that your macro logic put the wrong value in the wrong place or you had a combination of arguments that were not accounted for in the macro logic.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Testing without macro, it seems that WIDTH=, when used in either the PROC REPORT statement or the DEFINE statement, does permit control of column widths. My general advice is to avoid percents unless you want to control the overall width of the whole report and let PROC REPORT divide the columns into that width. Otherwise, control column width with DEFINE.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps,&lt;/P&gt;
&lt;P&gt;Cynthia&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 06 Oct 2018 15:45:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-columns-too-wide/m-p/502139#M21864</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2018-10-06T15:45:28Z</dc:date>
    </item>
    <item>
      <title>Re: ODS RTF columns too wide</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-columns-too-wide/m-p/502233#M21865</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13549"&gt;@Cynthia_sas&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;What is different between OUTPUTWIDTH= and WIDTH= ?&lt;/P&gt;
&lt;P&gt;Doesn't WIDTH= only work under LISTING destination ? When it work for RTF destination ?&lt;/P&gt;</description>
      <pubDate>Sun, 07 Oct 2018 10:11:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-columns-too-wide/m-p/502233#M21865</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2018-10-07T10:11:31Z</dc:date>
    </item>
    <item>
      <title>Re: ODS RTF columns too wide</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-columns-too-wide/m-p/502254#M21866</link>
      <description>&lt;P&gt;HI:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; As shown in my code, WIDTH= &lt;STRONG&gt;&lt;EM&gt;in a STYLE override&lt;/EM&gt;&lt;/STRONG&gt; is OK to use in ODS Destinations that support STYLEs. If you use:&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;style(location)={width=99in} &lt;/STRONG&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;or&lt;/FONT&gt;&lt;STRONG&gt; style(location)={outputwidth=99in}&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;then WIDTH and OUTPUTWIDTH are aliases.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Outside of a STYLE override, the simple WIDTH= in a DEFINE statement does just control LISTING. So if you had this:&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;define charvar / 'Label' &lt;FONT color="#FF0000"&gt;width=20&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;FONT color="#0000FF"&gt;style(column)={width=.5in color=red}&lt;/FONT&gt;;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then the width=20 is a LISTING only option, but inside the STYLE(COLUMN) option, the width=.5in is an ODS option. And, as you can see in my code, works for ODS RTF, PDF, HTML, and ODS TAGSETS.EXCELXP and ODS EXCEL.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; If you look at the code in my screenshots, WIDTH= is always inside a STYLE= override, not as a simple DEFINE statement option. WIDTH=, by itself, in a DEFINE statement is a LISTING only option, but in a STYLE override, either WIDTH= or OUTPUTWIDTH= can be specified as aliases for each other.&lt;BR /&gt;&lt;BR /&gt;It makes sense, in a STYLE override, OUTPUTWIDTH was the first name for the attribute, when you could just adjust the width of the entire report in the PROC REPORT statement. But in later versions of SAS, when you could adjust the WIDTH of columns in a STYLE override, it made sense for them to be aliases to ODS.&lt;BR /&gt;&lt;BR /&gt;Cynthia&lt;/P&gt;</description>
      <pubDate>Sun, 07 Oct 2018 13:53:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-columns-too-wide/m-p/502254#M21866</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2018-10-07T13:53:52Z</dc:date>
    </item>
    <item>
      <title>Re: ODS RTF columns too wide</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-columns-too-wide/m-p/502370#M21867</link>
      <description>&lt;P&gt;OK. I understand something.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But what is difference between WIDTH= and CELLWIDTH=&amp;nbsp; ?&lt;/P&gt;</description>
      <pubDate>Mon, 08 Oct 2018 12:22:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-columns-too-wide/m-p/502370#M21867</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2018-10-08T12:22:40Z</dc:date>
    </item>
    <item>
      <title>Re: ODS RTF columns too wide</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-columns-too-wide/m-p/502398#M21868</link>
      <description>&lt;P&gt;Hi: When used in the context of a DEFINE statement with a STYLE= override, CELLWIDTH= and WIDTH= are aliases. So in a PROC REPORT statement OUTPUTWIDTH and WIDTH are aliases for the same attribute; in a DEFINE statement CELLWIDTH and WIDTH are aliases for the same attribute.&lt;BR /&gt;&lt;BR /&gt;From the doc:&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="width_attr.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/23854i0B072CFA8C80FE2D/image-size/large?v=v2&amp;amp;px=999" role="button" title="width_attr.png" alt="width_attr.png" /&gt;&lt;/span&gt;&lt;BR /&gt;Cynthia&lt;/P&gt;</description>
      <pubDate>Mon, 08 Oct 2018 13:27:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-columns-too-wide/m-p/502398#M21868</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2018-10-08T13:27:42Z</dc:date>
    </item>
    <item>
      <title>Re: ODS RTF columns too wide</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-columns-too-wide/m-p/864176#M26216</link>
      <description>&lt;P&gt;Hi, Cynthia:&lt;BR /&gt;Regarding inside Style(column) = {...} override, are Cellwidth =, Width =,&amp;nbsp; Outputwidth=&amp;nbsp; all aliaes?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;P&gt;Don&lt;/P&gt;</description>
      <pubDate>Tue, 14 Mar 2023 22:17:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-columns-too-wide/m-p/864176#M26216</guid>
      <dc:creator>DonZ</dc:creator>
      <dc:date>2023-03-14T22:17:02Z</dc:date>
    </item>
    <item>
      <title>Re: ODS RTF columns too wide</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-columns-too-wide/m-p/864183#M26218</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Easy enough to test. This is quite an old post, but I think that the answer is still yes. Have you tried something that did not work? If so, you may want to open a track with Tech support so they can test on the same version that you're using.&lt;/P&gt;
&lt;P&gt;Cynthia&lt;/P&gt;</description>
      <pubDate>Wed, 15 Mar 2023 00:47:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-columns-too-wide/m-p/864183#M26218</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2023-03-15T00:47:20Z</dc:date>
    </item>
    <item>
      <title>Re: ODS RTF columns too wide</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-columns-too-wide/m-p/864364#M26219</link>
      <description>&lt;P&gt;Hi, &lt;SPAN&gt;Cynthia:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks for your feedback. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Yes,&amp;nbsp; as i tested, inside Define NAME / Style(column) = {...}, WIDTH = /CELLWIDTH=/OUTPUTWIDTH =&amp;nbsp; &amp;nbsp;all have achieved exactly similar layout results.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Amazingly, I could observe they impact both Listing and RTF in different ways simultaneously.&lt;/P&gt;&lt;P&gt;Best&lt;/P&gt;&lt;P&gt;Don&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;define age / 'Age' width = 50&amp;nbsp; &amp;nbsp;/*no unit of in*/&lt;BR /&gt;style(column) = [cellwidth = 1.00in just = c];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Mar 2023 16:33:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-columns-too-wide/m-p/864364#M26219</guid>
      <dc:creator>DonZ</dc:creator>
      <dc:date>2023-03-15T16:33:33Z</dc:date>
    </item>
    <item>
      <title>Re: ODS RTF columns too wide</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-columns-too-wide/m-p/864410#M26220</link>
      <description>Hi: Basically the older width=50 is a LISTING only option that is ignored by all ODS destinations and the STYLE override syntax is respected by most ODS destinations, but ignored by the LISTING window.&lt;BR /&gt;Cynthia</description>
      <pubDate>Wed, 15 Mar 2023 20:41:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-columns-too-wide/m-p/864410#M26220</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2023-03-15T20:41:14Z</dc:date>
    </item>
  </channel>
</rss>

