<?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 PROC Report - Retain Formatting of Report when using ODS output excel and rsubmit (SAS/Connect) in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-Report-Retain-Formatting-of-Report-when-using-ODS-output/m-p/611507#M23610</link>
    <description>&lt;P&gt;I am using Windows Client and submitting my code to UNIX for processing.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I use windows client with my PROC report it retains all formats (font type/size/color etc) but when I create the excel output on UNIX the font type changes from Calibri to Courier. Also, what I had set as 0 on SAS for missing observations are replaced as 'period' on download.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please can anyone suggest a way to retain the exact format as of windows when using UNIX?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 13 Dec 2019 03:26:22 GMT</pubDate>
    <dc:creator>Amitkmr1979</dc:creator>
    <dc:date>2019-12-13T03:26:22Z</dc:date>
    <item>
      <title>PROC Report - Retain Formatting of Report when using ODS output excel and rsubmit (SAS/Connect)</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-Report-Retain-Formatting-of-Report-when-using-ODS-output/m-p/611507#M23610</link>
      <description>&lt;P&gt;I am using Windows Client and submitting my code to UNIX for processing.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I use windows client with my PROC report it retains all formats (font type/size/color etc) but when I create the excel output on UNIX the font type changes from Calibri to Courier. Also, what I had set as 0 on SAS for missing observations are replaced as 'period' on download.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please can anyone suggest a way to retain the exact format as of windows when using UNIX?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Dec 2019 03:26:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-Report-Retain-Formatting-of-Report-when-using-ODS-output/m-p/611507#M23610</guid>
      <dc:creator>Amitkmr1979</dc:creator>
      <dc:date>2019-12-13T03:26:22Z</dc:date>
    </item>
    <item>
      <title>Re: PROC Report - Retain Formatting of Report when using ODS output excel and rsubmit (SAS/Connect)</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-Report-Retain-Formatting-of-Report-when-using-ODS-output/m-p/611527#M23611</link>
      <description>&lt;P&gt;Please post the code you are using to create the excel-file.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Dec 2019 07:38:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-Report-Retain-Formatting-of-Report-when-using-ODS-output/m-p/611527#M23611</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2019-12-13T07:38:31Z</dc:date>
    </item>
    <item>
      <title>Re: PROC Report - Retain Formatting of Report when using ODS output excel and rsubmit (SAS/Connect)</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-Report-Retain-Formatting-of-Report-when-using-ODS-output/m-p/611962#M23623</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;rsubmit;
filename xlf "/appl/xxxxxxxxxxxxxxxxxxxxx/IB_Reporting.xls";

ods excel file=xlf options(embedded_titles='yes' frozen_headers='yes' start_at="6,2" frozen_rowheaders='7' tab_color='red' autofilter='1-2');
proc report data=work.test_report 
/*     nofs headline headskip style(summary)=[font_weight=bold]*/
     style(report)=[cellspacing=5 borderwidth=10 fontfamily=times bordercolor=blue]
	 style(header)=[color=Dark Blue fontstyle=italic fontsize=3 fontfamily=calibri just=center]
	 style(column)=[color=moderate blue fontfamily=calibri fontsize=2]
     style(lines)=[color=white backgroundcolor=black fontstyle=italic fontweight=bold fontsize=2 fontfamily=calibri]
     style(summary)=[color=cx3e3d73 backgroundcolor=cxaeadd9 fontsize=2 textalign=r fontfamily=calibri]
     ;

     title1 "Title for report";
	 title2 " For the process &amp;amp;month";
     column   Agent_state Typ Renewal_type Transaction_Type Y_: RollingTotal ytd_total ;
	 define   Renewal_type       / group noprint 'AUTO | MANUAL'; 
     define   Transaction_Type   / group noprint 'N.B. | RNWL'  ; 

     define   Agent_State        / order=internal 'STATE' style(column)=[just=center font_size=2 fontfamily=calibri];
	 define   Typ                / order=internal 'PRODUCT'; 

     define   Y_:                / style(column)=[tagattr="format:#,###.00;-#,###.00"]; 
     define   RollingTotal       / 'ROLLING TOTAL' style(column)=[tagattr="format:#,###.00;-#,###.00" color=DarkBlue backgroundcolor=aqua fontfamily=calibri fontsize=2 fontweight=bold]  ;
     define   ytd_total          / 'YTD TOTAL'  style(column)=[tagattr="format:#,###.00;-#,###.00" color=DarkBlue backgroundcolor=tan  fontfamily=calibri fontsize=2 fontweight=bold] ;

     break    after transaction_type /  skip summarize;
	 rbreak   after                  /  skip summarize;

     compute  before transaction_type / style=[background=lightblue just=c font_weight=bold fontfamily=calibri color=dark blue];
	                                           line Renewal_type $32. transaction_type $32. ;
	 endcomp;

	
run; 
ods excel close ;
endrsubmit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 16 Dec 2019 06:33:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-Report-Retain-Formatting-of-Report-when-using-ODS-output/m-p/611962#M23623</guid>
      <dc:creator>Amitkmr1979</dc:creator>
      <dc:date>2019-12-16T06:33:50Z</dc:date>
    </item>
    <item>
      <title>Re: PROC Report - Retain Formatting of Report when using ODS output excel and rsubmit (SAS/Connect)</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-Report-Retain-Formatting-of-Report-when-using-ODS-output/m-p/611963#M23624</link>
      <description>&lt;P&gt;One option we are exploring is to install font package on Linux RedHat 6.1&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Dec 2019 06:36:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-Report-Retain-Formatting-of-Report-when-using-ODS-output/m-p/611963#M23624</guid>
      <dc:creator>Amitkmr1979</dc:creator>
      <dc:date>2019-12-16T06:36:20Z</dc:date>
    </item>
    <item>
      <title>Re: PROC Report - Retain Formatting of Report when using ODS output excel and rsubmit (SAS/Connect)</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-Report-Retain-Formatting-of-Report-when-using-ODS-output/m-p/611971#M23625</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/303439"&gt;@Amitkmr1979&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;One option we are exploring is to install font package on Linux RedHat 6.1&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Sound like something to try. If this doesn't help contacting sas tech support is recommended. &lt;/P&gt;</description>
      <pubDate>Mon, 16 Dec 2019 07:44:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-Report-Retain-Formatting-of-Report-when-using-ODS-output/m-p/611971#M23625</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2019-12-16T07:44:18Z</dc:date>
    </item>
  </channel>
</rss>

