<?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: Dealing with tabs in ODS EXCEL and PROC SGRENDER in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Dealing-with-tabs-in-ODS-EXCEL-and-PROC-SGRENDER/m-p/609490#M19192</link>
    <description>&lt;P&gt;Perhaps you just need to set the sheet interval to NONE before the first call to the proc.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* Generate the 1st chart */
ODS EXCEL OPTIONS(SHEET_INTERVAL="NONE");
proc sgrender data=swork.graphiques(WHERE=(MONTH(Date)=&amp;amp;i)) template=passages;
run;

/* Generate the 2nd chart */
ODS EXCEL OPTIONS(SHEET_INTERVAL="NONE");
proc sgrender data=swork.stat_urg(WHERE=(MONTH(Date)=&amp;amp;i)) template=pct_hospit;
run;

/* Generate the 3rd chart */
ODS EXCEL OPTIONS(SHEET_INTERVAL="NONE");
proc sgrender data=swork.stat_urg(WHERE=(MONTH(Date)=&amp;amp;i)) template=pct_age;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Wed, 04 Dec 2019 19:14:18 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2019-12-04T19:14:18Z</dc:date>
    <item>
      <title>Dealing with tabs in ODS EXCEL and PROC SGRENDER</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Dealing-with-tabs-in-ODS-EXCEL-and-PROC-SGRENDER/m-p/609007#M19185</link>
      <description>&lt;P&gt;Hello.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to port an Excel report to SAS ODS Excel and I'm very close to archeive it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm just facing a small issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm using a macro to produce some graphics in a tab as I need to make up to 12 tabs (one per month).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The result is OK for all months except the first one.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For the first tab, the first graphic is OK and then SAS create a new tab, called JANUARY2, with the 2 other graphics. For other tabs, the 3 graphics are in the same tab.&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="January1.png" style="width: 394px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/34401i02AE3B30D2380634/image-size/large?v=v2&amp;amp;px=999" role="button" title="January1.png" alt="January1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="January2.png" style="width: 403px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/34402iA61DA308E2D2F0C4/image-size/large?v=v2&amp;amp;px=999" role="button" title="January2.png" alt="January2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="February.png" style="width: 408px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/34403i573FE5429C45E5A8/image-size/large?v=v2&amp;amp;px=999" role="button" title="February.png" alt="February.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the macro I wrote :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%MACRO graphs_mois(nb_mois);
%LET mois1=JANUARY;
%LET mois2=FEBRUARY;
%LET mois3=MARCH;
%DO i=1 %TO &amp;amp;nb_mois;
* Onglet *;
ODS EXCEL OPTIONS(SHEET_NAME="&amp;amp;&amp;amp;mois&amp;amp;i.." SHEET_INTERVAL="NOW" EMBEDDED_TITLES="YES");

TITLE;

/* Generate the chart */
proc sgrender data=swork.graphiques(WHERE=(MONTH(Date)=&amp;amp;i)) template=passages;
run;

ODS EXCEL OPTIONS(SHEET_INTERVAL="NONE");

/* Generate the chart */
proc sgrender data=swork.stat_urg(WHERE=(MONTH(Date)=&amp;amp;i)) template=pct_hospit;
run;

ODS EXCEL OPTIONS(SHEET_INTERVAL="NONE");

/* Generate the chart */
proc sgrender data=swork.stat_urg(WHERE=(MONTH(Date)=&amp;amp;i)) template=pct_age;
run;
%END;
%MEND;

%graphs_mois(3);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Is there any reason why the first tab is split in two ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Dec 2019 10:48:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Dealing-with-tabs-in-ODS-EXCEL-and-PROC-SGRENDER/m-p/609007#M19185</guid>
      <dc:creator>CHUNantes</dc:creator>
      <dc:date>2019-12-03T10:48:38Z</dc:date>
    </item>
    <item>
      <title>Re: Dealing with tabs in ODS EXCEL and PROC SGRENDER</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Dealing-with-tabs-in-ODS-EXCEL-and-PROC-SGRENDER/m-p/609457#M19191</link>
      <description>Hi:&lt;BR /&gt;  Without data and all your code, including the template code, it is hard to make a constructive suggestion. I note that you have not shown all your code, only the %DO loop that generates output. I assume you are creating an XLSX file for ODS EXCEL but it would be useful to see ALL your code, including the beginning ODS statements with FILE= and any other suboptions you're setting.&lt;BR /&gt;&lt;BR /&gt;If this is a very complex set of templates and data that you're using with SGRENDER, you might want to consider opening a track with Tech Support on this.&lt;BR /&gt;&lt;BR /&gt;Cynthia</description>
      <pubDate>Wed, 04 Dec 2019 17:30:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Dealing-with-tabs-in-ODS-EXCEL-and-PROC-SGRENDER/m-p/609457#M19191</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2019-12-04T17:30:29Z</dc:date>
    </item>
    <item>
      <title>Re: Dealing with tabs in ODS EXCEL and PROC SGRENDER</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Dealing-with-tabs-in-ODS-EXCEL-and-PROC-SGRENDER/m-p/609490#M19192</link>
      <description>&lt;P&gt;Perhaps you just need to set the sheet interval to NONE before the first call to the proc.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* Generate the 1st chart */
ODS EXCEL OPTIONS(SHEET_INTERVAL="NONE");
proc sgrender data=swork.graphiques(WHERE=(MONTH(Date)=&amp;amp;i)) template=passages;
run;

/* Generate the 2nd chart */
ODS EXCEL OPTIONS(SHEET_INTERVAL="NONE");
proc sgrender data=swork.stat_urg(WHERE=(MONTH(Date)=&amp;amp;i)) template=pct_hospit;
run;

/* Generate the 3rd chart */
ODS EXCEL OPTIONS(SHEET_INTERVAL="NONE");
proc sgrender data=swork.stat_urg(WHERE=(MONTH(Date)=&amp;amp;i)) template=pct_age;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 04 Dec 2019 19:14:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Dealing-with-tabs-in-ODS-EXCEL-and-PROC-SGRENDER/m-p/609490#M19192</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-12-04T19:14:18Z</dc:date>
    </item>
    <item>
      <title>Re: Dealing with tabs in ODS EXCEL and PROC SGRENDER</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Dealing-with-tabs-in-ODS-EXCEL-and-PROC-SGRENDER/m-p/609889#M19201</link>
      <description>&lt;P&gt;Thanks all for your help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp;: Unfortunatly, with your code, I only have one tab with all the graphics.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13549"&gt;@Cynthia_sas&lt;/a&gt;&amp;nbsp;: Here is my complete progam and my data (CPORT file in attachment). I dont think my issue is related to SGRENDER complexity because even after removing the more complex SGRENDER, the first tab is always split in two.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;* Graphics use full width of the page *;
OPTIONS PAPERSIZE=(50cm 21cm) MISSING=" ";

ODS _ALL_ CLOSE;
ODS GRAPHICS / RESET WIDTH=1600px HEIGHT=220px;

ODS EXCEL FILE="C:\temp\StatUrg.xlsx";

* Define the line chart template *;
proc template;
   define statgraph passages;
      begingraph;
         layout lattice / rows = 1 columns = 2;
            layout overlay / 
               /* Add a grid */
               xaxisopts=(DISPLAY=(LINE TICKS TICKVALUES) timeopts=(interval=day) gridattrs=(pattern=dot color=lightgray))
               yaxisopts=(DISPLAY=(LINE TICKS TICKVALUES) griddisplay=on gridattrs=(pattern=dot color=lightgray));
               /* Generate the line chart */
               linechart category=date response=valeur_a / name="Adultes"
                  /* Group by stock to draw a line for each stock */
                  group=type_a
                  /* Set the baseline at 0 */
                  baselineintercept=0
                  /* Display the lines and fill */
                  display=(line fill)
                  /* Specify the line attributes */
                  lineattrs=(thickness=2)
                  /* Specify the fill attributes */
                  fillattrs=(transparency=0.8);
               discretelegend "Adultes" / HALIGN=CENTER VALIGN=TOP;
            endlayout;
            layout overlay / 
               /* Add a grid */
               xaxisopts=(DISPLAY=(LINE TICKS TICKVALUES) timeopts=(interval=day) gridattrs=(pattern=dot color=lightgray))
               yaxisopts=(DISPLAY=(LINE TICKS TICKVALUES) griddisplay=on gridattrs=(pattern=dot color=lightgray));
               /* Generate the line chart */
               linechart category=date response=valeur_e / name="Enfants"
                  /* Group by stock to draw a line for each stock */
                  group=type_e
                  /* Set the baseline at 0 */
                  baselineintercept=0
                  /* Display the lines and fill */
                  display=(line fill)
                  /* Specify the line attributes */
                  lineattrs=(thickness=2)
                  /* Specify the fill attributes */
                  fillattrs=(transparency=0.8);
               discretelegend "Enfants" / HALIGN=CENTER VALIGN=TOP;
            endlayout;
         endlayout;
      endgraph;
   end;
run;

proc template;
   define statgraph pct_hospit;
      begingraph;
         layout lattice / rows = 1 columns = 2;
            layout overlay / 
               /* Add a grid */
               xaxisopts=(DISPLAY=(LINE TICKS TICKVALUES) timeopts=(interval=day) gridattrs=(pattern=dot color=lightgray))
               yaxisopts=(DISPLAY=(LINE TICKS TICKVALUES) griddisplay=on gridattrs=(pattern=dot color=lightgray));
               /* Generate the line chart */
               linechart category=date response=Rap_HospA / name="Adultes"
                  /* Set the baseline at 0 */
                  baselineintercept=0
                  /* Display the lines and fill */
                  display=(line fill)
                  /* Specify the line attributes */
                  lineattrs=(thickness=2)
                  /* Specify the fill attributes */
                  fillattrs=(transparency=0.8)
                  LEGENDLABEL='%tage Hospit / Nbre passages' ;
               discretelegend "Adultes" / HALIGN=CENTER VALIGN=TOP;
            endlayout;
            layout overlay / 
               /* Add a grid */
               xaxisopts=(DISPLAY=(LINE TICKS TICKVALUES) timeopts=(interval=day) gridattrs=(pattern=dot color=lightgray))
               yaxisopts=(DISPLAY=(LINE TICKS TICKVALUES) griddisplay=on gridattrs=(pattern=dot color=lightgray));
               /* Generate the line chart */
               linechart category=date response=Rap_HospE / name="Enfants"
                  /* Set the baseline at 0 */
                  baselineintercept=0
                  /* Display the lines and fill */
                  display=(line fill)
                  /* Specify the line attributes */
                  lineattrs=(thickness=2)
                  /* Specify the fill attributes */
                  fillattrs=(transparency=0.8)
                  LEGENDLABEL='%tage Hospit / Nbre passages' ;
               discretelegend "Enfants" / HALIGN=CENTER VALIGN=TOP;
            endlayout;
         endlayout;
      endgraph;
   end;
run;

proc template;
   define statgraph pct_age;
      begingraph;
         layout lattice / rows = 1 columns = 2;
            layout overlay / 
               /* Add a grid */
               xaxisopts=(DISPLAY=(LINE TICKS TICKVALUES) timeopts=(interval=day) gridattrs=(pattern=dot color=lightgray))
               yaxisopts=(DISPLAY=(LINE TICKS TICKVALUES) griddisplay=on gridattrs=(pattern=dot color=lightgray));
               /* Generate the line chart */
               linechart category=date response=Rap_75 / name="Adultes"
                  /* Set the baseline at 0 */
                  baselineintercept=0
                  /* Display the lines and fill */
                  display=(line fill)
                  /* Specify the line attributes */
                  lineattrs=(thickness=2)
                  /* Specify the fill attributes */
                  fillattrs=(transparency=0.8)
                  LEGENDLABEL='%tage &amp;gt; 75 ans / Nbre passages' ;
               discretelegend "Adultes" / HALIGN=CENTER VALIGN=TOP;
            endlayout;
            layout overlay / 
               /* Add a grid */
               xaxisopts=(DISPLAY=(LINE TICKS TICKVALUES) timeopts=(interval=day) gridattrs=(pattern=dot color=lightgray))
               yaxisopts=(DISPLAY=(LINE TICKS TICKVALUES) griddisplay=on gridattrs=(pattern=dot color=lightgray));
               /* Generate the line chart */
               linechart category=date response=Rap_BB1 / name="Enfants"
                  /* Set the baseline at 0 */
                  baselineintercept=0
                  /* Display the lines and fill */
                  display=(line fill)
                  /* Specify the line attributes */
                  lineattrs=(thickness=2)
                  /* Specify the fill attributes */
                  fillattrs=(transparency=0.8)
                  LEGENDLABEL='%tage &amp;lt; 1 an / Nbre passages' ;
               discretelegend "Enfants" / HALIGN=CENTER VALIGN=TOP;
            endlayout;
         endlayout;
      endgraph;
   end;
run;

%MACRO graphs_mois(nb_mois);
%LET mois1=JANUARY;
%LET mois2=FEBRUARY;
%LET mois3=MARCH;
%DO i=1 %TO &amp;amp;nb_mois;
* Tab *;
ODS EXCEL OPTIONS(SHEET_NAME="&amp;amp;&amp;amp;mois&amp;amp;i.." SHEET_INTERVAL="NOW" EMBEDDED_TITLES="YES");

TITLE;

/* Generate the chart */
proc sgrender data=swork.graphiques(WHERE=(MONTH(Date)=&amp;amp;i)) template=passages;
run;

/* Generate the chart */
ODS EXCEL OPTIONS(SHEET_INTERVAL="NONE");

proc sgrender data=swork.stat_urg(WHERE=(MONTH(Date)=&amp;amp;i)) template=pct_hospit;
run;

/* Generate the chart */
ODS EXCEL OPTIONS(SHEET_INTERVAL="NONE");

proc sgrender data=swork.stat_urg(WHERE=(MONTH(Date)=&amp;amp;i)) template=pct_age;
run;
%END;
%MEND;

%graphs_mois(3);

ODS EXCEL CLOSE;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 06 Dec 2019 08:25:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Dealing-with-tabs-in-ODS-EXCEL-and-PROC-SGRENDER/m-p/609889#M19201</guid>
      <dc:creator>CHUNantes</dc:creator>
      <dc:date>2019-12-06T08:25:04Z</dc:date>
    </item>
    <item>
      <title>Re: Dealing with tabs in ODS EXCEL and PROC SGRENDER</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Dealing-with-tabs-in-ODS-EXCEL-and-PROC-SGRENDER/m-p/609958#M19203</link>
      <description>Hi:&lt;BR /&gt;  Then it really sounds like you need to open a track with Tech Support on this.&lt;BR /&gt;Cynthia</description>
      <pubDate>Fri, 06 Dec 2019 14:20:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Dealing-with-tabs-in-ODS-EXCEL-and-PROC-SGRENDER/m-p/609958#M19203</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2019-12-06T14:20:06Z</dc:date>
    </item>
    <item>
      <title>Re: Dealing with tabs in ODS EXCEL and PROC SGRENDER</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Dealing-with-tabs-in-ODS-EXCEL-and-PROC-SGRENDER/m-p/609959#M19204</link>
      <description>OK, I will do it.&lt;BR /&gt;&lt;BR /&gt;Thanks for your help.</description>
      <pubDate>Fri, 06 Dec 2019 14:23:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Dealing-with-tabs-in-ODS-EXCEL-and-PROC-SGRENDER/m-p/609959#M19204</guid>
      <dc:creator>CHUNantes</dc:creator>
      <dc:date>2019-12-06T14:23:10Z</dc:date>
    </item>
    <item>
      <title>Re: Dealing with tabs in ODS EXCEL and PROC SGRENDER</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Dealing-with-tabs-in-ODS-EXCEL-and-PROC-SGRENDER/m-p/612388#M19244</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;a little re-organization of your program helps:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%MACRO graphs_mois(nb_mois);
%LET mois1=JANUARY;
%LET mois2=FEBRUARY;
%LET mois3=MARCH;

ods excel file='toto.xlsx';

ods excel options (SHEET_INTERVAL="NONE");

TITLE;

%DO i=1 %TO &amp;amp;nb_mois;

ODS EXCEL OPTIONS(SHEET_NAME="&amp;amp;&amp;amp;mois&amp;amp;i.." EMBEDDED_TITLES="YES");

proc sgrender data=work.stat_urg(WHERE=(MONTH(Date)=&amp;amp;i)) template=passages;
run;

ODS EXCEL OPTIONS(SHEET_INTERVAL="NONE");

proc sgrender data=work.stat_urg(WHERE=(MONTH(Date)=&amp;amp;i)) template=pct_hospit;
run;

ODS EXCEL OPTIONS(SHEET_INTERVAL="NONE");

proc sgrender data=work.stat_urg(WHERE=(MONTH(Date)=&amp;amp;i)) template=pct_age;
run;

ods excel options(SHEET_INTERVAL="NOW");
%END;
ods excel close;
%MEND;

%graphs_mois(3);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;with SAS 9.4M6, I obtain something that looks like what you want (see the toto.xlsx file attached)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sébastien&lt;/P&gt;</description>
      <pubDate>Tue, 17 Dec 2019 13:37:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Dealing-with-tabs-in-ODS-EXCEL-and-PROC-SGRENDER/m-p/612388#M19244</guid>
      <dc:creator>SR_FR</dc:creator>
      <dc:date>2019-12-17T13:37:07Z</dc:date>
    </item>
    <item>
      <title>Re: Dealing with tabs in ODS EXCEL and PROC SGRENDER</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Dealing-with-tabs-in-ODS-EXCEL-and-PROC-SGRENDER/m-p/612581#M19246</link>
      <description>Hello / Bonjour.&lt;BR /&gt;&lt;BR /&gt;I achieve to the same solution after SAS Support gave me the tip in my ticket &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks / Merci</description>
      <pubDate>Wed, 18 Dec 2019 07:21:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Dealing-with-tabs-in-ODS-EXCEL-and-PROC-SGRENDER/m-p/612581#M19246</guid>
      <dc:creator>CHUNantes</dc:creator>
      <dc:date>2019-12-18T07:21:44Z</dc:date>
    </item>
    <item>
      <title>Re: Dealing with tabs in ODS EXCEL and PROC SGRENDER</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Dealing-with-tabs-in-ODS-EXCEL-and-PROC-SGRENDER/m-p/612585#M19247</link>
      <description>&lt;P&gt;Bonjour&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;je me doutais bien que le support trouverait &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Dec 2019 07:45:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Dealing-with-tabs-in-ODS-EXCEL-and-PROC-SGRENDER/m-p/612585#M19247</guid>
      <dc:creator>SR_FR</dc:creator>
      <dc:date>2019-12-18T07:45:16Z</dc:date>
    </item>
  </channel>
</rss>

