<?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: Need help formatting Excel file created with Proc Report, SAS 9.4M3 in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Need-help-formatting-Excel-file-created-with-Proc-Report-SAS-9/m-p/348241#M18304</link>
    <description>&lt;P&gt;Asking someone to wade through that much code is probably a bit unreasonable&amp;nbsp;for a forum posting.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you simplify your question a bit &amp;nbsp;so it's more appropriate for here? A good way is to determine the feature you're looking for and seeing how you can get that built using proc report and a dataset from SASHELP. If we can't run the code then it's more difficult to help and debug. Yes, creating that is a lot of work but you're asking for a lot as well.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's an index of the tagset options and the corresponding pages where you can find information/examples of how to implement the feature.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://vasug.files.wordpress.com/2011/07/excelxppaperindex.pdf" target="_blank"&gt;https://vasug.files.wordpress.com/2011/07/excelxppaperindex.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 07 Apr 2017 18:01:50 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2017-04-07T18:01:50Z</dc:date>
    <item>
      <title>Need help formatting Excel file created with Proc Report, SAS 9.4M3</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Need-help-formatting-Excel-file-created-with-Proc-Report-SAS-9/m-p/348191#M18302</link>
      <description>&lt;P&gt;I posted about a similar topic a couple months ago, and I've made some progress since then.&amp;nbsp; But I'll be making a lot of these reports, so the more I can automate, the better.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've attached an Excel file that shows what SAS actually produces, as well as a file that I had to manually edit to make it look like I want. Note that it's in landscape and I selected the option in Excel so that all columns fit on one page.&amp;nbsp; Also, there is a footer that includes the report number and the date it was produced.&amp;nbsp; And the column totals from Column B is copied to Column J, C is copied to K, etc.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would appreciate any help with SAS syntax that would automate the above items, add borders, etc.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options mprint;

%macro freqs (state,statename);

LIBNAME base "D:\&amp;amp;state. only\base";
LIBNAME &amp;amp;state "D:\&amp;amp;state. only";


%do year=2005 %to 2012;

%macro by_ds (ds);

DATA &amp;amp;state..&amp;amp;ds.&amp;amp;year._&amp;amp;state._TEMP (compress = yes); SET base.&amp;amp;ds.&amp;amp;year._&amp;amp;state.;

year=input("&amp;amp;year",8.);

DOByr1=year-0; 
DOByr2=year-18;

DOByr1c=put(DOByr1,$4.);
DOByr2c=put(DOByr2,$4.);


/**Delete cases that do not meet age requirements**/
IF EL_DOB &amp;gt; DOByr1c||"1231"  
     OR EL_DOB &amp;lt; DOByr2c||"0101" 
     THEN delete;


%mend;

%by_ds (IP)
%by_ds (OT)

ODS TRACE ON;
DATA &amp;amp;state..IP&amp;amp;year._&amp;amp;state._bdayCUT1 (compress = yes); SET &amp;amp;state..IP&amp;amp;year._&amp;amp;state._TEMP;

LENGTH ADJUST_CD_char $63;

IF ADJUST_CD = 0 THEN ADJUST_CD_char = "0-NO ADJUSTMENT OF CLAIMS WAS REQUIRED";
IF ADJUST_CD = 1 THEN ADJUST_CD_char = "1-AT LEAST ONE ORIGINAL CLAIM AND AT LEAST ONE ADJUSTMENT CLAIM";
IF ADJUST_CD = 2 THEN ADJUST_CD_char = "2-NOT POSSIBLE TO COMPLETE THE ADJUSTMENT PROCESS";


title "&amp;amp;state.&amp;amp;year. 2005-2012 IP Adjustment Code summary";  
PROC FREQ NOPRINT; 
	TABLES ADJUST_CD_char  /OUT=&amp;amp;state..IP&amp;amp;year._&amp;amp;state.ADJUST_CD_FREQ; 

ODS OUTPUT OneWayFreqs(match_all)=freqs;
RUN;
ODS TRACE OFF;

DATA &amp;amp;state..IP&amp;amp;year._&amp;amp;state._FREQ_ADJUST_CD; SET &amp;amp;state..IP&amp;amp;year._&amp;amp;state.ADJUST_CD_FREQ;

&amp;amp;state.&amp;amp;year._IPcount = COUNT;
&amp;amp;state.&amp;amp;year._IPpercent = PERCENT/100;

DROP COUNT PERCENT;

RUN;



ODS TRACE ON;
DATA &amp;amp;state..OT&amp;amp;year._&amp;amp;state._bdayCUT1 (compress = yes); SET &amp;amp;state..OT&amp;amp;year._&amp;amp;state._TEMP;


LENGTH ADJUST_CD_char $63;

IF ADJUST_CD = 0 THEN ADJUST_CD_char = "0-NO ADJUSTMENT OF CLAIMS WAS REQUIRED";
IF ADJUST_CD = 1 THEN ADJUST_CD_char = "1-AT LEAST ONE ORIGINAL CLAIM AND AT LEAST ONE ADJUSTMENT CLAIM";
IF ADJUST_CD = 2 THEN ADJUST_CD_char = "2-NOT POSSIBLE TO COMPLETE THE ADJUSTMENT PROCESS";

title "&amp;amp;state.&amp;amp;year. OT Type Claim Code summary";  
PROC FREQ NOPRINT; 
	TABLES ADJUST_CD_char  /OUT=&amp;amp;state..OT&amp;amp;year._&amp;amp;state.ADJUST_CD_FREQ; 

ODS OUTPUT OneWayFreqs(match_all)=freqs;
RUN;
ODS TRACE OFF;

DATA &amp;amp;state..OT&amp;amp;year._&amp;amp;state._FREQ_ADJUST_CD; SET &amp;amp;state..OT&amp;amp;year._&amp;amp;state.ADJUST_CD_FREQ;

&amp;amp;state.&amp;amp;year._OTcount = COUNT;
&amp;amp;state.&amp;amp;year._OTpercent = PERCENT/100;

DROP COUNT PERCENT;

RUN;



%end;
/*This %end statement runs all the years before merging them*/

DATA &amp;amp;state..IPOT_&amp;amp;state._ADJUST_CD_MERGE; MERGE &amp;amp;state..IP2005_&amp;amp;state._FREQ_ADJUST_CD  &amp;amp;state..IP2006_&amp;amp;state._FREQ_ADJUST_CD
	 &amp;amp;state..IP2007_&amp;amp;state._FREQ_ADJUST_CD &amp;amp;state..IP2008_&amp;amp;state._FREQ_ADJUST_CD &amp;amp;state..IP2009_&amp;amp;state._FREQ_ADJUST_CD
	 &amp;amp;state..IP2010_&amp;amp;state._FREQ_ADJUST_CD &amp;amp;state..IP2011_&amp;amp;state._FREQ_ADJUST_CD &amp;amp;state..IP2012_&amp;amp;state._FREQ_ADJUST_CD 
	 
	 &amp;amp;state..OT2005_&amp;amp;state._FREQ_ADJUST_CD &amp;amp;state..OT2006_&amp;amp;state._FREQ_ADJUST_CD
	 &amp;amp;state..OT2007_&amp;amp;state._FREQ_ADJUST_CD &amp;amp;state..OT2008_&amp;amp;state._FREQ_ADJUST_CD  &amp;amp;state..OT2009_&amp;amp;state._FREQ_ADJUST_CD
	 &amp;amp;state..OT2010_&amp;amp;state._FREQ_ADJUST_CD &amp;amp;state..OT2011_&amp;amp;state._FREQ_ADJUST_CD &amp;amp;state..OT2012_&amp;amp;state._FREQ_ADJUST_CD;
	BY ADJUST_CD_char;
	
RUN;	


ods excel file="Z:\MAX data\SYNTAX\!prcdr rev\SUMMARIES\&amp;amp;state. 2.2.2,2.3.2 - ADJUST_CD (1).xlsx" 
 /* will apply an appearance style */
 style=Analysis
 options(
  /* for multiple procs/sheet */
  sheet_interval="none" 
  /* name the sheet tab */
  sheet_name="IPOT PRCDR"
  embedded_titles = 'yes'
  absolute_column_width = "28,8.71,8.71,8.71,8.71,8.71,8.71,8.71,8.71,8.71,8.71,8.71,8.71,8.71,8.71,8.71,8.71,8.71,8.71,9.43,9.43,9.43,9.43,9.43,9.43,9.43,9.43,9.43,9.43,9.43,9.43,9.43,9.43,9.43,9.43"
  /*auto_subtotals = 'yes' --THIS OPTION DOESN'T WORK WITH THIS TAGSET*/
  hidden_columns = "2,3,4,5,6,7,8,9,18,19,20,21,22,23,24,25"
 );
 
/* add some formatted text */
ods escapechar='~';
/*ods text="~S={font_size=14pt font_weight=bold}~ &amp;amp;state. 2005-2010 OT Proc code summary";*/


RUN;



proc report data=&amp;amp;state..IPOT_&amp;amp;state._ADJUST_CD_MERGE spanrows headline missing SPLIT='_';

title1 "Adjustment code claims 2.2.2, 2.3.2";  
title2 "&amp;amp;statename., 0-18 years old";  
title3 "2005-2012";  


	COLUMN ADJUST_CD_char 
	
	&amp;amp;state.2005_IPcount &amp;amp;state.2006_IPcount &amp;amp;state.2007_IPcount &amp;amp;state.2008_IPcount &amp;amp;state.2009_IPcount 
	&amp;amp;state.2010_IPcount &amp;amp;state.2011_IPcount &amp;amp;state.2012_IPcount 
		
	&amp;amp;state.2005_IPpercent &amp;amp;state.2006_IPpercent &amp;amp;state.2007_IPpercent &amp;amp;state.2008_IPpercent &amp;amp;state.2009_IPpercent 
	&amp;amp;state.2010_IPpercent &amp;amp;state.2011_IPpercent &amp;amp;state.2012_IPpercent 
		
	&amp;amp;state.2005_OTcount &amp;amp;state.2006_OTcount &amp;amp;state.2007_OTcount &amp;amp;state.2008_OTcount &amp;amp;state.2009_OTcount 
	&amp;amp;state.2010_OTcount &amp;amp;state.2011_OTcount &amp;amp;state.2012_OTcount 
		
	&amp;amp;state.2005_OTpercent &amp;amp;state.2006_OTpercent &amp;amp;state.2007_OTpercent &amp;amp;state.2008_OTpercent &amp;amp;state.2009_OTpercent 
	&amp;amp;state.2010_OTpercent &amp;amp;state.2011_OTpercent &amp;amp;state.2012_OTpercent;
		
	define ADJUST_CD_char / group;
	define &amp;amp;state.2005_IPcount / group style(column)={tagattr='format:#,###'} DISPLAY ANALYSIS SUM;
	define &amp;amp;state.2006_IPcount / group style(column)={tagattr='format:#,###'} DISPLAY ANALYSIS SUM;
	define &amp;amp;state.2007_IPcount / group style(column)={tagattr='format:#,###'} DISPLAY ANALYSIS SUM;
	define &amp;amp;state.2008_IPcount / group style(column)={tagattr='format:#,###'} DISPLAY ANALYSIS SUM;
	define &amp;amp;state.2009_IPcount / group style(column)={tagattr='format:#,###'} DISPLAY ANALYSIS SUM;
	define &amp;amp;state.2010_IPcount / group style(column)={tagattr='format:#,###'} DISPLAY ANALYSIS SUM;
	define &amp;amp;state.2011_IPcount / group style(column)={tagattr='format:#,###'} DISPLAY ANALYSIS SUM;
	define &amp;amp;state.2012_IPcount / group style(column)={tagattr='format:#,###'} DISPLAY ANALYSIS SUM;
	
	define &amp;amp;state.2005_IPpercent / group style(column)={tagattr='format:0.0%'};
	define &amp;amp;state.2006_IPpercent / group style(column)={tagattr='format:0.0%'};
	define &amp;amp;state.2007_IPpercent / group style(column)={tagattr='format:0.0%'};
	define &amp;amp;state.2008_IPpercent / group style(column)={tagattr='format:0.0%'};
	define &amp;amp;state.2009_IPpercent / group style(column)={tagattr='format:0.0%'};
	define &amp;amp;state.2010_IPpercent / group style(column)={tagattr='format:0.0%'};
	define &amp;amp;state.2011_IPpercent / group style(column)={tagattr='format:0.0%'};
	define &amp;amp;state.2012_IPpercent / group style(column)={tagattr='format:0.0%'};	
	
	define &amp;amp;state.2005_OTcount / group style(column)={tagattr='format:#,###'} DISPLAY ANALYSIS SUM;
	define &amp;amp;state.2006_OTcount / group style(column)={tagattr='format:#,###'} DISPLAY ANALYSIS SUM;
	define &amp;amp;state.2007_OTcount / group style(column)={tagattr='format:#,###'} DISPLAY ANALYSIS SUM;
	define &amp;amp;state.2008_OTcount / group style(column)={tagattr='format:#,###'} DISPLAY ANALYSIS SUM;
	define &amp;amp;state.2009_OTcount / group style(column)={tagattr='format:#,###'} DISPLAY ANALYSIS SUM;
	define &amp;amp;state.2010_OTcount / group style(column)={tagattr='format:#,###'} DISPLAY ANALYSIS SUM;
	define &amp;amp;state.2011_OTcount / group style(column)={tagattr='format:#,###'} DISPLAY ANALYSIS SUM;
	define &amp;amp;state.2012_OTcount / group style(column)={tagattr='format:#,###'} DISPLAY ANALYSIS SUM;
	
	define &amp;amp;state.2005_OTpercent / group style(column)={tagattr='format:0.0%'};
	define &amp;amp;state.2006_OTpercent / group style(column)={tagattr='format:0.0%'};
	define &amp;amp;state.2007_OTpercent / group style(column)={tagattr='format:0.0%'};
	define &amp;amp;state.2008_OTpercent / group style(column)={tagattr='format:0.0%'};
	define &amp;amp;state.2009_OTpercent / group style(column)={tagattr='format:0.0%'};
	define &amp;amp;state.2010_OTpercent / group style(column)={tagattr='format:0.0%'};
	define &amp;amp;state.2011_OTpercent / group style(column)={tagattr='format:0.0%'};
	define &amp;amp;state.2012_OTpercent / group style(column)={tagattr='format:0.0%'};
	
/*compute after;
	PRCDR_CD_SYS="Column N";
endcomp;*/


/*compute &amp;amp;state.2005_PERCENT;
	if upcase(_break_)='_RBREAK_' then do;
	call define(_col_,"style","style={tagattr=""formula:= B8""}");*/
	/*call define(_col_,"style","style={tagattr=""formula:RC[-5]""}");*/
	/*call define('PRCDR_CD_SYS',"style","style={tagattr=""formula:= sum($D$4:$D9)""}");
	call define('&amp;amp;state.2006_PERCENT',"style","style={tagattr=""formula:= sum($D$4:$D9)""}");*/

/*end;
endcomp;*/

compute after;
	ADJUST_CD_char="N Column Total";
endcomp;

rbreak after / summarize;

RUN;

%mend;

/*%freqs(FL,Florida)
%freqs(IL,Illinois)*/
/*%freqs(LA,Louisiana)*/
/*%freqs(MI,Michigan)*/
/*%freqs(NY, New York)*/

/*%freqs(SC,South Carolina)*/

/*%freqs(TX,Texas)*/
%freqs(UT,Utah)

/*ODS HTML close;*/

ods excel close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 07 Apr 2017 16:06:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Need-help-formatting-Excel-file-created-with-Proc-Report-SAS-9/m-p/348191#M18302</guid>
      <dc:creator>Wolverine</dc:creator>
      <dc:date>2017-04-07T16:06:36Z</dc:date>
    </item>
    <item>
      <title>Re: Need help formatting Excel file created with Proc Report, SAS 9.4M3</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Need-help-formatting-Excel-file-created-with-Proc-Report-SAS-9/m-p/348213#M18303</link>
      <description>&lt;P&gt;I forgot to mention that when I run multiple states, only the first state is included in the Excel file.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Apr 2017 17:14:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Need-help-formatting-Excel-file-created-with-Proc-Report-SAS-9/m-p/348213#M18303</guid>
      <dc:creator>Wolverine</dc:creator>
      <dc:date>2017-04-07T17:14:55Z</dc:date>
    </item>
    <item>
      <title>Re: Need help formatting Excel file created with Proc Report, SAS 9.4M3</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Need-help-formatting-Excel-file-created-with-Proc-Report-SAS-9/m-p/348241#M18304</link>
      <description>&lt;P&gt;Asking someone to wade through that much code is probably a bit unreasonable&amp;nbsp;for a forum posting.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you simplify your question a bit &amp;nbsp;so it's more appropriate for here? A good way is to determine the feature you're looking for and seeing how you can get that built using proc report and a dataset from SASHELP. If we can't run the code then it's more difficult to help and debug. Yes, creating that is a lot of work but you're asking for a lot as well.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's an index of the tagset options and the corresponding pages where you can find information/examples of how to implement the feature.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://vasug.files.wordpress.com/2011/07/excelxppaperindex.pdf" target="_blank"&gt;https://vasug.files.wordpress.com/2011/07/excelxppaperindex.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Apr 2017 18:01:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Need-help-formatting-Excel-file-created-with-Proc-Report-SAS-9/m-p/348241#M18304</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-04-07T18:01:50Z</dc:date>
    </item>
    <item>
      <title>Re: Need help formatting Excel file created with Proc Report, SAS 9.4M3</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Need-help-formatting-Excel-file-created-with-Proc-Report-SAS-9/m-p/348249#M18305</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/43822"&gt;@Wolverine&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;I forgot to mention that when I run multiple states, only the first state is included in the Excel file.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Do you have a variable for the state? If so sort by that variable and use BY statevariable; to generate an output table for each level.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If not you'll have to tell us how we know when the state changes.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Apr 2017 18:11:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Need-help-formatting-Excel-file-created-with-Proc-Report-SAS-9/m-p/348249#M18305</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-04-07T18:11:34Z</dc:date>
    </item>
    <item>
      <title>Re: Need help formatting Excel file created with Proc Report, SAS 9.4M3</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Need-help-formatting-Excel-file-created-with-Proc-Report-SAS-9/m-p/348345#M18310</link>
      <description>I am giving some clues, You can follow this :&lt;BR /&gt;&lt;BR /&gt;data have;&lt;BR /&gt;input adj_code year value treatment $ state $;&lt;BR /&gt;datalines;&lt;BR /&gt;0 2005 12 therap MI&lt;BR /&gt;1 2006 20 inpati CA&lt;BR /&gt;2 2007 22 inpati MI&lt;BR /&gt;1 2005 21 inpati MI&lt;BR /&gt;2 2005 22 therap CA&lt;BR /&gt;0 2005 10 therap CA&lt;BR /&gt;1 2006 19 inpati CA&lt;BR /&gt;2 2007 10 inpati MI&lt;BR /&gt;2 2006 20 therap CA&lt;BR /&gt;1 2006 11 inpati MI&lt;BR /&gt;0 2005 90 therap CA&lt;BR /&gt;0 2006 11 inpati MI&lt;BR /&gt;0 2005 99 therap MI&lt;BR /&gt;;&lt;BR /&gt;run;&lt;BR /&gt;proc format;&lt;BR /&gt;value adj_code&lt;BR /&gt;0="0-NO ADJUSTMENT OF CLAIMS WAS REQUIRED"&lt;BR /&gt;1="1-AT LEAST ONE ORIGINAL CLAIM AND AT LEAST ONE ADJUSTMENT CLAIM"&lt;BR /&gt;2="2-NOT POSSIBLE TO COMPLETE THE ADJUSTMENT PROCESS";&lt;BR /&gt;value $treatment&lt;BR /&gt;'therap'="OTHER THERAPY PERCENTAGES"&lt;BR /&gt;'inpati'="INPATIENT PERCENTAGES";&lt;BR /&gt;run;&lt;BR /&gt;ods escapechar='^';&lt;BR /&gt;ods pdf;&lt;BR /&gt;proc report nowd data=have spanrows;&lt;BR /&gt;title1 "Adjustment code claims 2.2.2, 2.3.2";&lt;BR /&gt;title2 "&amp;amp;statename., 0-18 years old";&lt;BR /&gt;title3 "2005-2007";&lt;BR /&gt;column state (adj_code) treatment,year,value;* year value treatment;&lt;BR /&gt;define state/group;&lt;BR /&gt;break after state/page;&lt;BR /&gt;define adj_code/'Adjustment Code' group format=adj_code.;&lt;BR /&gt;define treatment/''across order=internal format=$treatment.;&lt;BR /&gt;define year/' 'across order=internal ;&lt;BR /&gt;define value/'' sum;&lt;BR /&gt;rbreak after/ summarize;&lt;BR /&gt;run;&lt;BR /&gt;ods pdf close;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sat, 08 Apr 2017 01:35:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Need-help-formatting-Excel-file-created-with-Proc-Report-SAS-9/m-p/348345#M18310</guid>
      <dc:creator>lakshmi_74</dc:creator>
      <dc:date>2017-04-08T01:35:14Z</dc:date>
    </item>
  </channel>
</rss>

