<?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: The bottom horizontal axis labeled &amp;quot;year_month&amp;quot; could not be fit in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/The-bottom-horizontal-axis-labeled-quot-year-month-quot-could/m-p/629199#M35627</link>
    <description>&lt;P&gt;Depending on the actual number of elements in your group axis you could try adding to the group axis definition&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1) Split = '/' which would use your / to split the year and month components to separate lines in the label so you got something like&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2019&lt;/P&gt;
&lt;P&gt;&amp;nbsp; 09&amp;nbsp;&lt;/P&gt;
&lt;P&gt;in appearance&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2) add an option such as ANGLE =45 on the AXIS statement for the VALUES&amp;nbsp;used by the group variable to have the text appear at an angle so the overall width used by the label is less, if you go to Angle=90 (or -90) you get vertical text&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;3) use shorter text for the value or display using a smaller font, again modify the Axis font size to something smaller&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;4) make the graph display in a larger area&lt;/P&gt;</description>
    <pubDate>Tue, 03 Mar 2020 17:26:34 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2020-03-03T17:26:34Z</dc:date>
    <item>
      <title>The bottom horizontal axis labeled "year_month" could not be fit</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/The-bottom-horizontal-axis-labeled-quot-year-month-quot-could/m-p/629157#M35625</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I am using sas code I found to generate every month graph. Problem showed up this month with new month&lt;/P&gt;&lt;P&gt;"ERROR: The bottom horizontal axis labeled "year_month" could not be fit. There was not enough room in the graph's display area to&lt;BR /&gt;fit the group axis."&lt;/P&gt;&lt;P&gt;Where should I start changing this code?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Attached last month graph.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;for table&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;year_month&lt;/TD&gt;&lt;TD&gt;int&lt;/TD&gt;&lt;TD&gt;con&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2019/09&lt;/TD&gt;&lt;TD&gt;8&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2019/10&lt;/TD&gt;&lt;TD&gt;16&lt;/TD&gt;&lt;TD&gt;7&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2019/11&lt;/TD&gt;&lt;TD&gt;25&lt;/TD&gt;&lt;TD&gt;11&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2019/12&lt;/TD&gt;&lt;TD&gt;27&lt;/TD&gt;&lt;TD&gt;17&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2020/01&lt;/TD&gt;&lt;TD&gt;36&lt;/TD&gt;&lt;TD&gt;22&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2020/02&lt;/TD&gt;&lt;TD&gt;47&lt;/TD&gt;&lt;TD&gt;27&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2020/03&lt;/TD&gt;&lt;TD&gt;47&lt;/TD&gt;&lt;TD&gt;28&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data edanno;&lt;BR /&gt;set hfedroll1;&lt;BR /&gt;by year_month mid;&lt;BR /&gt;length function color $8 text $20 style $ 20;&lt;BR /&gt;&lt;BR /&gt;/* Populate the table */&lt;BR /&gt;if first.year_month then do;&lt;BR /&gt;function='move'; xsys='2'; ysys='1';&lt;BR /&gt;midpoint=mid; group=year_month; y=0;&lt;BR /&gt;output;&lt;BR /&gt;function='cntl2txt'; output;&lt;BR /&gt;function='label'; xsys='A'; ysys='3';&lt;BR /&gt;x=+4; y=13;&lt;BR /&gt;text=trim(left(put(int,8.)));&lt;BR /&gt;color='black'; position='+'; when='a';&lt;BR /&gt;output;&lt;BR /&gt;function='move'; xsys='2'; ysys='1';&lt;BR /&gt;midpoint=mid; group=year_month; y=0;&lt;BR /&gt;output;&lt;BR /&gt;function='cntl2txt'; output;&lt;BR /&gt;function='label'; xsys='A'; ysys='3';&lt;BR /&gt;x=+4; y=9;&lt;BR /&gt;text=trim(left(put(con,8.)));&lt;BR /&gt;color='black'; position='+'; when='a';&lt;BR /&gt;output;&lt;BR /&gt;end;&lt;BR /&gt;&lt;BR /&gt;/* Generate the table frame */&lt;BR /&gt;function='move'; xsys='3'; ysys='3';&lt;BR /&gt;x=3; y=6;&lt;BR /&gt;output;&lt;BR /&gt;function='bar'; xsys='1'; ysys='3';&lt;BR /&gt;x=100; y=15;&lt;BR /&gt;style='empty'; color='black'; line=0;&lt;BR /&gt;output;&lt;BR /&gt;&lt;BR /&gt;/* Generate the row headers */&lt;BR /&gt;function='label'; xsys='3'; ysys='3';&lt;BR /&gt;style='marker'; text='U'; color='cx7c95ca';&lt;BR /&gt;x=4; y=13; position='6';&lt;BR /&gt;output;&lt;BR /&gt;function='label'; xsys='3'; ysys='3';&lt;BR /&gt;style='"Albany AMT"'; text='Intervention'; color='black';&lt;BR /&gt;x=7; y=13; position='6';&lt;BR /&gt;output;&lt;BR /&gt;function='label'; xsys='3'; ysys='3';&lt;BR /&gt;style='marker'; text='U'; color='cxde7e6f';&lt;BR /&gt;x=4; y=8.5; position='6';&lt;BR /&gt;output;&lt;BR /&gt;function='label'; xsys='3'; ysys='3';&lt;BR /&gt;style='"Albany AMT"'; text='Control'; color='black';&lt;BR /&gt;x=7; y=9; position='6';&lt;BR /&gt;output;&lt;BR /&gt;&lt;BR /&gt;/* Generate the vertical lines in the table */&lt;BR /&gt;function='move'; xsys='1'; ysys='1';&lt;BR /&gt;x=0; y=0;&lt;BR /&gt;output;&lt;BR /&gt;function='draw'; xsys='1'; ysys='3';&lt;BR /&gt;x=0; y=6;&lt;BR /&gt;line=1; color='black';&lt;BR /&gt;output;&lt;BR /&gt;function='move'; xsys='1'; ysys='1';&lt;BR /&gt;x=100; y=0;&lt;BR /&gt;output;&lt;BR /&gt;function='draw'; xsys='1'; ysys='3';&lt;BR /&gt;x=100; y=6;&lt;BR /&gt;line=1; color='black';&lt;BR /&gt;output;&lt;BR /&gt;&lt;BR /&gt;if first.year_month and n ^=&amp;amp;skip then do;&lt;BR /&gt;function='move'; xsys='2'; ysys='1';&lt;BR /&gt;midpoint=mid; y=0; group=year_month;&lt;BR /&gt;output;&lt;BR /&gt;function='move'; xsys='A'; ysys='1';&lt;BR /&gt;x=+15.5; x=+12; y=0;&lt;BR /&gt;output;&lt;BR /&gt;function='draw'; xsys='A'; ysys='3';&lt;BR /&gt;x=+0; y=6;&lt;BR /&gt;color='black'; line=1;&lt;BR /&gt;output;&lt;BR /&gt;end;&lt;BR /&gt;&lt;BR /&gt;/* Generate the horizontal line in the table */&lt;BR /&gt;function='move'; xsys='3'; ysys='3';&lt;BR /&gt;x=3; y=10.5;&lt;BR /&gt;output;&lt;BR /&gt;function='draw'; xsys='1'; ysys='3';&lt;BR /&gt;x=100; y=10.5;&lt;BR /&gt;line=1; color='black';&lt;BR /&gt;output;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;axis1 label=(a=90 'Nr of encounters')&lt;BR /&gt;order=(0 to 100 by 10)&lt;BR /&gt;minor=none;&lt;BR /&gt;&lt;BR /&gt;axis2 label=none&lt;BR /&gt;value=none&lt;BR /&gt;origin=(20pct,22pct)&lt;/P&gt;&lt;P&gt;offset=(4pct,4pct);&lt;BR /&gt;&lt;BR /&gt;axis3 label=none;&lt;BR /&gt;&lt;BR /&gt;footnote1 'year_month';&lt;BR /&gt;footnote2 h=.5 ' ';&lt;BR /&gt;&lt;BR /&gt;pattern1 value=solid color=cx7c95ca;&lt;BR /&gt;pattern2 value=solid color=cxde7e6f;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc gchart data=hfedroll1;&lt;BR /&gt;vbar mid / sumvar=resp group=year_month&lt;BR /&gt;coutline=black patternid=midpoint&lt;BR /&gt;space=0 gspace=5 width=4&lt;BR /&gt;cframe=ltgray autoref clipref&lt;BR /&gt;raxis=axis1 maxis=axis2 gaxis=axis3&lt;BR /&gt;annotate=edanno;&lt;BR /&gt;run;&lt;BR /&gt;quit;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Mar 2020 15:59:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/The-bottom-horizontal-axis-labeled-quot-year-month-quot-could/m-p/629157#M35625</guid>
      <dc:creator>Mark7</dc:creator>
      <dc:date>2020-03-03T15:59:08Z</dc:date>
    </item>
    <item>
      <title>Re: The bottom horizontal axis labeled "year_month" could not be fit</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/The-bottom-horizontal-axis-labeled-quot-year-month-quot-could/m-p/629171#M35626</link>
      <description>&lt;P&gt;Below original sas code. Without&amp;nbsp;2001/03 and&amp;nbsp;2001/04 works proper&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/* Set the graphics environment */&lt;BR /&gt;goptions reset=all cback=white border htitle=12pt htext=10pt;&lt;BR /&gt;&lt;BR /&gt;data ds1;&lt;BR /&gt;input year $ exp rev;&lt;BR /&gt;datalines;&lt;BR /&gt;1997/98 302.3 310.8&lt;BR /&gt;1998/99 323.0 328.7&lt;BR /&gt;1999/00 354.4 363.5&lt;BR /&gt;2000/01 381.7 390.2&lt;BR /&gt;2001/02 426.8 429.1&lt;BR /&gt;2001/03 481.7 490.2&lt;BR /&gt;2001/04 498.8 498.1&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;data ds2;&lt;BR /&gt;set ds1;&lt;BR /&gt;n=_n_;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;data _null_;&lt;BR /&gt;set ds2 end=eof;&lt;BR /&gt;if eof then call symput('skip',left(n));&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;data ds2;&lt;BR /&gt;set ds2;&lt;BR /&gt;resp=exp; mid='exp'; output;&lt;BR /&gt;resp=rev; mid='rev'; output;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;proc sort;&lt;BR /&gt;by year mid;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;data anno;&lt;BR /&gt;set ds2;&lt;BR /&gt;by year mid;&lt;BR /&gt;length function color $8 text $20 style $ 20;&lt;BR /&gt;&lt;BR /&gt;/* Populate the table */&lt;BR /&gt;if first.year then do;&lt;BR /&gt;function='move'; xsys='2'; ysys='1';&lt;BR /&gt;midpoint=mid; group=year; y=0;&lt;BR /&gt;output;&lt;BR /&gt;function='cntl2txt'; output;&lt;BR /&gt;function='label'; xsys='A'; ysys='3';&lt;BR /&gt;x=+4; y=13;&lt;BR /&gt;text=trim(left(put(exp,8.1)));&lt;BR /&gt;color='black'; position='+'; when='a';&lt;BR /&gt;output;&lt;BR /&gt;function='move'; xsys='2'; ysys='1';&lt;BR /&gt;midpoint=mid; group=year; y=0;&lt;BR /&gt;output;&lt;BR /&gt;function='cntl2txt'; output;&lt;BR /&gt;function='label'; xsys='A'; ysys='3';&lt;BR /&gt;x=+4; y=9;&lt;BR /&gt;text=trim(left(put(rev,8.1)));&lt;BR /&gt;color='black'; position='+'; when='a';&lt;BR /&gt;output;&lt;BR /&gt;end;&lt;BR /&gt;&lt;BR /&gt;/* Generate the table frame */&lt;BR /&gt;function='move'; xsys='3'; ysys='3';&lt;BR /&gt;x=3; y=6;&lt;BR /&gt;output;&lt;BR /&gt;function='bar'; xsys='1'; ysys='3';&lt;BR /&gt;x=100; y=15;&lt;BR /&gt;style='empty'; color='black'; line=0;&lt;BR /&gt;output;&lt;BR /&gt;&lt;BR /&gt;/* Generate the row headers */&lt;BR /&gt;function='label'; xsys='3'; ysys='3';&lt;BR /&gt;style='marker'; text='U'; color='cx7c95ca';&lt;BR /&gt;x=4; y=13; position='6';&lt;BR /&gt;output;&lt;BR /&gt;function='label'; xsys='3'; ysys='3';&lt;BR /&gt;style='"Albany AMT"'; text='Expenditure'; color='black';&lt;BR /&gt;x=7; y=13; position='6';&lt;BR /&gt;output;&lt;BR /&gt;function='label'; xsys='3'; ysys='3';&lt;BR /&gt;style='marker'; text='U'; color='cxde7e6f';&lt;BR /&gt;x=4; y=8.5; position='6';&lt;BR /&gt;output;&lt;BR /&gt;function='label'; xsys='3'; ysys='3';&lt;BR /&gt;style='"Albany AMT"'; text='Revenue'; color='black';&lt;BR /&gt;x=7; y=9; position='6';&lt;BR /&gt;output;&lt;BR /&gt;&lt;BR /&gt;/* Generate the vertical lines in the table */&lt;BR /&gt;function='move'; xsys='1'; ysys='1';&lt;BR /&gt;x=0; y=0;&lt;BR /&gt;output;&lt;BR /&gt;function='draw'; xsys='1'; ysys='3';&lt;BR /&gt;x=0; y=6;&lt;BR /&gt;line=1; color='black';&lt;BR /&gt;output;&lt;BR /&gt;function='move'; xsys='1'; ysys='1';&lt;BR /&gt;x=100; y=0;&lt;BR /&gt;output;&lt;BR /&gt;function='draw'; xsys='1'; ysys='3';&lt;BR /&gt;x=100; y=6;&lt;BR /&gt;line=1; color='black';&lt;BR /&gt;output;&lt;BR /&gt;&lt;BR /&gt;if first.year and n ^=&amp;amp;skip then do;&lt;BR /&gt;function='move'; xsys='2'; ysys='1';&lt;BR /&gt;midpoint=mid; y=0; group=year;&lt;BR /&gt;output;&lt;BR /&gt;function='move'; xsys='A'; ysys='1';&lt;BR /&gt;x=+15.5; x=+12; y=0;&lt;BR /&gt;output;&lt;BR /&gt;function='draw'; xsys='A'; ysys='3';&lt;BR /&gt;x=+0; y=6;&lt;BR /&gt;color='black'; line=1;&lt;BR /&gt;output;&lt;BR /&gt;end;&lt;BR /&gt;&lt;BR /&gt;/* Generate the horizontal line in the table */&lt;BR /&gt;function='move'; xsys='3'; ysys='3';&lt;BR /&gt;x=3; y=10.5;&lt;BR /&gt;output;&lt;BR /&gt;function='draw'; xsys='1'; ysys='3';&lt;BR /&gt;x=100; y=10.5;&lt;BR /&gt;line=1; color='black';&lt;BR /&gt;output;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;title1 'Revenue and Expenditures, 1997/98-2001-02';&lt;BR /&gt;&lt;BR /&gt;axis1 label=(a=90 'Millions of Dollars')&lt;BR /&gt;order=(100 to 450 by 50)&lt;BR /&gt;minor=none;&lt;BR /&gt;&lt;BR /&gt;axis2 label=none&lt;BR /&gt;value=none&lt;BR /&gt;origin=(20pct,22pct)&lt;BR /&gt;offset=(4pct,4pct);&lt;BR /&gt;&lt;BR /&gt;axis3 label=none;&lt;BR /&gt;&lt;BR /&gt;footnote1 'Fiscal Year';&lt;BR /&gt;footnote2 h=.5 ' ';&lt;BR /&gt;&lt;BR /&gt;pattern1 value=solid color=cx7c95ca;&lt;BR /&gt;pattern2 value=solid color=cxde7e6f;&lt;BR /&gt;&lt;BR /&gt;proc gchart data=ds2;&lt;BR /&gt;vbar mid / sumvar=resp group=year&lt;BR /&gt;coutline=black patternid=midpoint&lt;BR /&gt;space=0 gspace=5 width=4&lt;BR /&gt;cframe=ltgray autoref clipref&lt;BR /&gt;raxis=axis1 maxis=axis2 gaxis=axis3&lt;BR /&gt;annotate=anno;&lt;BR /&gt;run;&lt;BR /&gt;quit;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Mar 2020 16:23:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/The-bottom-horizontal-axis-labeled-quot-year-month-quot-could/m-p/629171#M35626</guid>
      <dc:creator>Mark7</dc:creator>
      <dc:date>2020-03-03T16:23:58Z</dc:date>
    </item>
    <item>
      <title>Re: The bottom horizontal axis labeled "year_month" could not be fit</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/The-bottom-horizontal-axis-labeled-quot-year-month-quot-could/m-p/629199#M35627</link>
      <description>&lt;P&gt;Depending on the actual number of elements in your group axis you could try adding to the group axis definition&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1) Split = '/' which would use your / to split the year and month components to separate lines in the label so you got something like&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2019&lt;/P&gt;
&lt;P&gt;&amp;nbsp; 09&amp;nbsp;&lt;/P&gt;
&lt;P&gt;in appearance&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2) add an option such as ANGLE =45 on the AXIS statement for the VALUES&amp;nbsp;used by the group variable to have the text appear at an angle so the overall width used by the label is less, if you go to Angle=90 (or -90) you get vertical text&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;3) use shorter text for the value or display using a smaller font, again modify the Axis font size to something smaller&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;4) make the graph display in a larger area&lt;/P&gt;</description>
      <pubDate>Tue, 03 Mar 2020 17:26:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/The-bottom-horizontal-axis-labeled-quot-year-month-quot-could/m-p/629199#M35627</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-03-03T17:26:34Z</dc:date>
    </item>
    <item>
      <title>Re: The bottom horizontal axis labeled "year_month" could not be fit</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/The-bottom-horizontal-axis-labeled-quot-year-month-quot-could/m-p/629221#M35628</link>
      <description>&lt;P&gt;I think it might be possible to use the SG procedures to do this, which would completely eliminate the fussy coding, and might be doable in about a dozen lines.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's a link to a somewhat similar situation, I hope it helps to give you ideas.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/graphicallyspeaking/2018/02/19/survival-plot-twist-using-sgplot-procedure/" target="_self"&gt;https://blogs.sas.com/content/graphicallyspeaking/2018/02/19/survival-plot-twist-using-sgplot-procedure/&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Tom&lt;/P&gt;</description>
      <pubDate>Tue, 03 Mar 2020 19:05:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/The-bottom-horizontal-axis-labeled-quot-year-month-quot-could/m-p/629221#M35628</guid>
      <dc:creator>TomKari</dc:creator>
      <dc:date>2020-03-03T19:05:10Z</dc:date>
    </item>
    <item>
      <title>Re: The bottom horizontal axis labeled "year_month" could not be fit</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/The-bottom-horizontal-axis-labeled-quot-year-month-quot-could/m-p/629227#M35629</link>
      <description>&lt;P&gt;Thank you TomKari. I will start digging code from your blog.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Mar 2020 19:22:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/The-bottom-horizontal-axis-labeled-quot-year-month-quot-could/m-p/629227#M35629</guid>
      <dc:creator>Mark7</dc:creator>
      <dc:date>2020-03-03T19:22:59Z</dc:date>
    </item>
  </channel>
</rss>

