<?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: Abbreviated Month Year format that will work in English and French (e.g. Feb19 and Féb19) in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Abbreviated-Month-Year-format-that-will-work-in-English-and/m-p/533502#M146278</link>
    <description>&lt;P&gt;Tom, when I tried the Picture format earlier, it did not work with SGPLOT.&amp;nbsp; btw %b%y (lowercase gives 2 digit year) would be perfect.&lt;/P&gt;&lt;P&gt;I will try with your code first thing tomorrow morning.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
    <pubDate>Thu, 07 Feb 2019 04:46:09 GMT</pubDate>
    <dc:creator>ghosh</dc:creator>
    <dc:date>2019-02-07T04:46:09Z</dc:date>
    <item>
      <title>Abbreviated Month Year format that will work in English and French (e.g. Feb19 and Féb19)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Abbreviated-Month-Year-format-that-will-work-in-English-and/m-p/533477#M146266</link>
      <description>&lt;P&gt;Is there a way to format date in the abbreviated month-year format that will work in English and French?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am creating a bilingual English-French report with tables and graphs. I have to show the date in mmmyy&amp;nbsp; format.&amp;nbsp;&amp;nbsp;&amp;nbsp; I can get this using &amp;nbsp;the format monyy.&amp;nbsp;&amp;nbsp; This works in English, so for French I used the fr-CA locale. &amp;nbsp;I specified the NLDATEYM format which is equivalent to monyy according to the SAS manual.&amp;nbsp; I need to keep the date field as numeric so it displays properly on a graph axis.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, NLDATEYM does not give the abbreviated month name (as shown in the second table).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Therefore I created a new variable&amp;nbsp; (newdate) using the NLDATE function as in the dataset new in the code attached.&amp;nbsp; Unfortunately it creates a character value that does not really work in the graph.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;I am using SAS 9.4 (release 3)&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="Capture.JPG" style="width: 396px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/26927iC9E9C13BCF162FE6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Capture.JPG" alt="Capture.JPG" /&gt;&lt;/span&gt;option missing='-' locale='en_US'; 

data stocks;
   set sashelp.stocks (where=(year(date)=2005));
run;  
proc sort;  
by descending stock date;
run;

proc report nowd;
Title "locale='en_US'";
   format date monyy.;
   column stock close,date;
   define stock/group order=data;   
   define close/analysis ' ' ;
   define date/across ' ' order=data;
 run;
 
 option locale='fr_CA';
proc report nowd;
Title "locale='fr_CA'";
   format date NLDATEYM.;
   column stock close,date;
   define stock/group order=data;   
   define close/analysis ' ' ;
   define date/across ' ' order=data;
 run;
 
data new;
   set stocks;    
      newdate=nldate(date,'%b%y');
run;
 proc report nowd;
Title "locale='fr_CA' with newdate=nldate(date,'%b%y')";
   column stock close,newdate;
   define stock/group order=data; 
   define close/analysis ' ' ;
   define newdate/across ' ' order=data;  
 run;
 
 title '';
proc sgplot data=new(where=(stock='IBM')) noborder;
  vbar newdate / response=close  
           group=stock;
  xaxis display=(nolabel noline noticks);
  yaxis display=(noline noticks) grid;
run;
 &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Any help to solve this issue will be greatly appreciated.&lt;/P&gt;&lt;P&gt;Thanks &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Feb 2019 04:28:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Abbreviated-Month-Year-format-that-will-work-in-English-and/m-p/533477#M146266</guid>
      <dc:creator>ghosh</dc:creator>
      <dc:date>2019-02-07T04:28:10Z</dc:date>
    </item>
    <item>
      <title>Re: Abbreviated Month Year format that will work in English and French (e.g. Feb19 and Féb19)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Abbreviated-Month-Year-format-that-will-work-in-English-and/m-p/533488#M146268</link>
      <description>&lt;P&gt;Why not&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sgplot data=stocks(where=(stock='IBM')) noborder;
   format date NLDATEYM.;
  vbar date / response=close  
           group=stock;
  xaxis display=(nolabel noline noticks);
  yaxis display=(noline noticks) grid;
run;
I&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;It works fine for the graph&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/26930i3E9DD0CE38B635D4/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&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>Thu, 07 Feb 2019 04:14:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Abbreviated-Month-Year-format-that-will-work-in-English-and/m-p/533488#M146268</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2019-02-07T04:14:03Z</dc:date>
    </item>
    <item>
      <title>Re: Abbreviated Month Year format that will work in English and French (e.g. Feb19 and Féb19)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Abbreviated-Month-Year-format-that-will-work-in-English-and/m-p/533489#M146269</link>
      <description>&lt;P&gt;&lt;EM&gt;&amp;gt;Thanks for your response.&amp;nbsp; However, as I mentioned, I would like to use abbreviated month names.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;Oops sorry, mmm more thinking required!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Feb 2019 04:18:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Abbreviated-Month-Year-format-that-will-work-in-English-and/m-p/533489#M146269</guid>
      <dc:creator>ghosh</dc:creator>
      <dc:date>2019-02-07T04:18:55Z</dc:date>
    </item>
    <item>
      <title>Re: Abbreviated Month Year format that will work in English and French (e.g. Feb19 and Féb19)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Abbreviated-Month-Year-format-that-will-work-in-English-and/m-p/533491#M146270</link>
      <description>&lt;P&gt;Why not just use the month number instead?&amp;nbsp; YYMMD7.&lt;/P&gt;
&lt;PRE&gt;431   data _null_;
432     do month=1 to 12;
433       date=mdy(month,1,2018);
434       put month= date= yymmd7. ;
435     end;
436   run;

month=1 date=2018-01
month=2 date=2018-02
month=3 date=2018-03
month=4 date=2018-04
month=5 date=2018-05
month=6 date=2018-06
month=7 date=2018-07
month=8 date=2018-08
month=9 date=2018-09
month=10 date=2018-10
month=11 date=2018-11
month=12 date=2018-12
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Feb 2019 04:21:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Abbreviated-Month-Year-format-that-will-work-in-English-and/m-p/533491#M146270</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-02-07T04:21:25Z</dc:date>
    </item>
    <item>
      <title>Re: Abbreviated Month Year format that will work in English and French (e.g. Feb19 and Féb19)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Abbreviated-Month-Year-format-that-will-work-in-English-and/m-p/533492#M146271</link>
      <description>&lt;P&gt;I tried&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format; 
  picture moisyy (default=5)
    low - high = '%b%Y' (datatype=date)  ;
run; &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;but the locale is ignored.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Feb 2019 04:22:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Abbreviated-Month-Year-format-that-will-work-in-English-and/m-p/533492#M146271</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2019-02-07T04:22:22Z</dc:date>
    </item>
    <item>
      <title>Re: Abbreviated Month Year format that will work in English and French (e.g. Feb19 and Féb19)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Abbreviated-Month-Year-format-that-will-work-in-English-and/m-p/533493#M146272</link>
      <description>&lt;P&gt;Hi Tom, The specifications require it in that format.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 07 Feb 2019 04:25:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Abbreviated-Month-Year-format-that-will-work-in-English-and/m-p/533493#M146272</guid>
      <dc:creator>ghosh</dc:creator>
      <dc:date>2019-02-07T04:25:48Z</dc:date>
    </item>
    <item>
      <title>Re: Abbreviated Month Year format that will work in English and French (e.g. Feb19 and Féb19)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Abbreviated-Month-Year-format-that-will-work-in-English-and/m-p/533496#M146273</link>
      <description>&lt;P&gt;How about&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sgplot data=sashelp.stocks(where=(stock='IBM' and year(date)=2000)) noborder;
   format date NLDATEYMM.;
  vbar date / response=close  
           group=stock;
  xaxis display=(nolabel noline noticks);
  yaxis display=(noline noticks) grid;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SGPlot2.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/26931i7CD5EC128EEE255E/image-size/large?v=v2&amp;amp;px=999" role="button" title="SGPlot2.png" alt="SGPlot2.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Feb 2019 04:34:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Abbreviated-Month-Year-format-that-will-work-in-English-and/m-p/533496#M146273</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2019-02-07T04:34:46Z</dc:date>
    </item>
    <item>
      <title>Re: Abbreviated Month Year format that will work in English and French (e.g. Feb19 and Féb19)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Abbreviated-Month-Year-format-that-will-work-in-English-and/m-p/533498#M146275</link>
      <description>&lt;P&gt;Worked for me.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;4     %put locale=%sysfunc(getoption(locale));
locale=FRENCH_FRANCE
5     proc format ;
6       picture my low-high='%b-%Y' (datatype=date);
NOTE: Format MY has been output.
7     run;

NOTE: PROCEDURE FORMAT used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds


8
9     data xx ;
10     do month=1 to 12;
11       date=mdy(month,1,2019);
12       str=put(date,my8.);
13       put (_all_) (=);
14     end;
15    run;

month=1 date=21550 str=jan-2019
month=2 date=21581 str=fev-2019
month=3 date=21609 str=mar-2019
month=4 date=21640 str=avr-2019
month=5 date=21670 str=mai-2019
month=6 date=21701 str=jun-2019
month=7 date=21731 str=jul-2019
month=8 date=21762 str=aou-2019
month=9 date=21793 str=sep-2019
month=10 date=21823 str=oct-2019
month=11 date=21854 str=nov-2019
month=12 date=21884 str=dec-2019
NOTE: The data set WORK.XX has 1 observations and 3 variables.
NOTE: DATA statement used (Total process time):
      real time           0.16 seconds
      cpu time            0.01 seconds


16    options locale=English;
17    %put locale=%sysfunc(getoption(locale));
locale=ENGLISH_UNITEDSTATES
18    data xx ;
19     do month=1 to 12;
20       date=mdy(month,1,2019);
21       str=put(date,my8.);
22       put (_all_) (=);
23     end;
24    run;

month=1 date=21550 str=JAN-2019
month=2 date=21581 str=FEB-2019
month=3 date=21609 str=MAR-2019
month=4 date=21640 str=APR-2019
month=5 date=21670 str=MAY-2019
month=6 date=21701 str=JUN-2019
month=7 date=21731 str=JUL-2019
month=8 date=21762 str=AUG-2019
month=9 date=21793 str=SEP-2019
month=10 date=21823 str=OCT-2019
month=11 date=21854 str=NOV-2019
month=12 date=21884 str=DEC-2019
NOTE: The data set WORK.XX has 1 observations and 3 variables.
NOTE: DATA statement used (Total process time):
      real time           0.02 seconds
      cpu time            0.01 seconds

&lt;/PRE&gt;</description>
      <pubDate>Thu, 07 Feb 2019 04:39:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Abbreviated-Month-Year-format-that-will-work-in-English-and/m-p/533498#M146275</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-02-07T04:39:17Z</dc:date>
    </item>
    <item>
      <title>Re: Abbreviated Month Year format that will work in English and French (e.g. Feb19 and Féb19)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Abbreviated-Month-Year-format-that-will-work-in-English-and/m-p/533499#M146276</link>
      <description>&lt;P&gt;That's very close, is it possible to show just the last two digits of the year, all in one row?&lt;/P&gt;&lt;P&gt;Thanks for the suggestion, though!&lt;/P&gt;</description>
      <pubDate>Thu, 07 Feb 2019 04:40:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Abbreviated-Month-Year-format-that-will-work-in-English-and/m-p/533499#M146276</guid>
      <dc:creator>ghosh</dc:creator>
      <dc:date>2019-02-07T04:40:23Z</dc:date>
    </item>
    <item>
      <title>Re: Abbreviated Month Year format that will work in English and French (e.g. Feb19 and Féb19)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Abbreviated-Month-Year-format-that-will-work-in-English-and/m-p/533502#M146278</link>
      <description>&lt;P&gt;Tom, when I tried the Picture format earlier, it did not work with SGPLOT.&amp;nbsp; btw %b%y (lowercase gives 2 digit year) would be perfect.&lt;/P&gt;&lt;P&gt;I will try with your code first thing tomorrow morning.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 07 Feb 2019 04:46:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Abbreviated-Month-Year-format-that-will-work-in-English-and/m-p/533502#M146278</guid>
      <dc:creator>ghosh</dc:creator>
      <dc:date>2019-02-07T04:46:09Z</dc:date>
    </item>
    <item>
      <title>Re: Abbreviated Month Year format that will work in English and French (e.g. Feb19 and Féb19)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Abbreviated-Month-Year-format-that-will-work-in-English-and/m-p/533601#M146319</link>
      <description>&lt;P&gt;The picture format does not work with SGPLOT or Proc Report&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="Capture.JPG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/26940i7716CCADD8C0F55A/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.JPG" alt="Capture.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;option missing='-' locale='en_US'; 
data stocks;
   set sashelp.stocks (where=(year(date)=2005));
run;  
proc sort;  
by descending stock date;
run;

proc format;
  picture my low - high= '%b%y' (datatype=date);
  run;

proc report nowd;
Title "locale='en_US'";
   format date my.;
   column stock close,date;
   define stock/group order=data;   
   define close/analysis ' ' ;
   define date/across ' ' order=data;
 run;

proc sgplot data=stocks(where=(stock='IBM')) noborder;
   format date my.;
  vbar date / response=close  
           group=stock;
  xaxis display=(nolabel noline noticks);
  yaxis display=(noline noticks) grid;
run;
 
option missing='-' locale='fr_CA';
proc report nowd;
Title "locale='fr_CA'";
   format date my.;
   column stock close,date;
   define stock/group order=data;   
   define close/analysis ' ' ;
   define date/across ' ' order=data;
 run;

proc sgplot data=stocks(where=(stock='IBM')) noborder;
   format date my.;
  vbar date / response=close  
           group=stock;
  xaxis display=(nolabel noline noticks);
  yaxis display=(noline noticks) grid;
run;
 &lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 07 Feb 2019 14:50:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Abbreviated-Month-Year-format-that-will-work-in-English-and/m-p/533601#M146319</guid>
      <dc:creator>ghosh</dc:creator>
      <dc:date>2019-02-07T14:50:34Z</dc:date>
    </item>
    <item>
      <title>Re: Abbreviated Month Year format that will work in English and French (e.g. Feb19 and Féb19)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Abbreviated-Month-Year-format-that-will-work-in-English-and/m-p/533638#M146331</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/78622"&gt;@ghosh&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;EM&gt;&amp;gt;Thanks for your response.&amp;nbsp; However, as I mentioned, I would like to use abbreviated month names.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;Oops sorry, mmm more thinking required!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;You did not specify a width for the NLDATEYM format. When you just NLDATEYM the default width is 16. Specify NLDATEYM6. to get something such as OCT 14 (Month and 2 digit year).&lt;/P&gt;</description>
      <pubDate>Thu, 07 Feb 2019 16:01:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Abbreviated-Month-Year-format-that-will-work-in-English-and/m-p/533638#M146331</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-02-07T16:01:38Z</dc:date>
    </item>
    <item>
      <title>Re: Abbreviated Month Year format that will work in English and French (e.g. Feb19 and Féb19)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Abbreviated-Month-Year-format-that-will-work-in-English-and/m-p/533664#M146338</link>
      <description>NLDATEYM6. does not work, shows asterisks for just one period.</description>
      <pubDate>Thu, 07 Feb 2019 17:17:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Abbreviated-Month-Year-format-that-will-work-in-English-and/m-p/533664#M146338</guid>
      <dc:creator>ghosh</dc:creator>
      <dc:date>2019-02-07T17:17:40Z</dc:date>
    </item>
    <item>
      <title>Re: Abbreviated Month Year format that will work in English and French (e.g. Feb19 and Féb19)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Abbreviated-Month-Year-format-that-will-work-in-English-and/m-p/533667#M146339</link>
      <description>&lt;P&gt;Found the answer from SAS Tech Support.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The line that did the trick is the following format statement, works for both English and French locale in Report and SGPLOT:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#ff0000" face="Courier New" size="3"&gt;format&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; date &lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;EURDFMY.&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; ;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;Thanks everyone for taking the time to help.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Feb 2019 17:23:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Abbreviated-Month-Year-format-that-will-work-in-English-and/m-p/533667#M146339</guid>
      <dc:creator>ghosh</dc:creator>
      <dc:date>2019-02-07T17:23:57Z</dc:date>
    </item>
    <item>
      <title>Re: Abbreviated Month Year format that will work in English and French (e.g. Feb19 and Féb19)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Abbreviated-Month-Year-format-that-will-work-in-English-and/m-p/533773#M146388</link>
      <description>&lt;P&gt;Be careful. This choice of format goes against SAS own recommendations:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?docsetId=nlsref&amp;amp;docsetTarget=n1ta9hosby6dq3n16s5wgc6908po.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_self"&gt;https://documentation.sas.com/?docsetId=nlsref&amp;amp;docsetTarget=n1ta9hosby6dq3n16s5wgc6908po.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Feb 2019 22:37:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Abbreviated-Month-Year-format-that-will-work-in-English-and/m-p/533773#M146388</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2019-02-07T22:37:33Z</dc:date>
    </item>
    <item>
      <title>Re: Abbreviated Month Year format that will work in English and French (e.g. Feb19 and Féb19)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Abbreviated-Month-Year-format-that-will-work-in-English-and/m-p/533775#M146389</link>
      <description>Hi PG, yes I am aware of the fact this format be get deprecated in the future. Hopefully there will be a replacement under the NLS group.&lt;BR /&gt;Regards,&lt;BR /&gt;Aroop</description>
      <pubDate>Thu, 07 Feb 2019 22:51:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Abbreviated-Month-Year-format-that-will-work-in-English-and/m-p/533775#M146389</guid>
      <dc:creator>ghosh</dc:creator>
      <dc:date>2019-02-07T22:51:56Z</dc:date>
    </item>
  </channel>
</rss>

