<?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: SAS date format NORDFWDX. truncates year for septemper month in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/SAS-date-format-NORDFWDX-truncates-year-for-septemper-month/m-p/618630#M181507</link>
    <description>That doesnt fix the issue, but seems to be the problem. The needed length is 18</description>
    <pubDate>Mon, 20 Jan 2020 17:53:41 GMT</pubDate>
    <dc:creator>Ullsokk</dc:creator>
    <dc:date>2020-01-20T17:53:41Z</dc:date>
    <item>
      <title>SAS date format NORDFWDX. truncates year for septemper month</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-date-format-NORDFWDX-truncates-year-for-septemper-month/m-p/618611#M181499</link>
      <description>&lt;P&gt;The following seems to work for all but dates in september, which truncates the last digit of the year.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data datotest;
sep= "15SEP2019"d;
feb= "15FEB2019"d;
to = today();
format sep feb to NORDFWDX. ;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This gives me&amp;nbsp;15. september 201, not&amp;nbsp;15. september 2019. For shorter month names, it works.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help would be much appreciated&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jan 2020 17:09:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-date-format-NORDFWDX-truncates-year-for-septemper-month/m-p/618611#M181499</guid>
      <dc:creator>Ullsokk</dc:creator>
      <dc:date>2020-01-20T17:09:30Z</dc:date>
    </item>
    <item>
      <title>Re: SAS date format NORDFWDX. truncates year for septemper month</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-date-format-NORDFWDX-truncates-year-for-septemper-month/m-p/618614#M181501</link>
      <description>&lt;P&gt;Would switching to WORDATE format be a good idea?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;format sep feb to worddate. ;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 20 Jan 2020 17:18:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-date-format-NORDFWDX-truncates-year-for-septemper-month/m-p/618614#M181501</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2020-01-20T17:18:37Z</dc:date>
    </item>
    <item>
      <title>Re: SAS date format NORDFWDX. truncates year for septemper month</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-date-format-NORDFWDX-truncates-year-for-septemper-month/m-p/618616#M181502</link>
      <description>&lt;P&gt;Or more closer seems to be WORDDATX format&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;format sep feb to worddatx. ;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;H1 class="xis-title"&gt;&amp;nbsp;&lt;/H1&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jan 2020 17:21:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-date-format-NORDFWDX-truncates-year-for-septemper-month/m-p/618616#M181502</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2020-01-20T17:21:13Z</dc:date>
    </item>
    <item>
      <title>Re: SAS date format NORDFWDX. truncates year for septemper month</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-date-format-NORDFWDX-truncates-year-for-septemper-month/m-p/618618#M181503</link>
      <description>&lt;P&gt;The &lt;STRONG&gt;NORDFWDX&amp;nbsp;&lt;/STRONG&gt;format can be displayed from length 3-17 (&lt;A href="https://www.mwsug.org/proceedings/2008/saspres/MWSUG-2008-SAS07.pdf" target="_blank"&gt;https://www.mwsug.org/proceedings/2008/saspres/MWSUG-2008-SAS07.pdf&lt;/A&gt;). I'd suggest changing to:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;format sep feb to NORDFWDX17.;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 20 Jan 2020 17:24:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-date-format-NORDFWDX-truncates-year-for-septemper-month/m-p/618618#M181503</guid>
      <dc:creator>unison</dc:creator>
      <dc:date>2020-01-20T17:24:51Z</dc:date>
    </item>
    <item>
      <title>Re: SAS date format NORDFWDX. truncates year for septemper month</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-date-format-NORDFWDX-truncates-year-for-septemper-month/m-p/618620#M181504</link>
      <description>&lt;P&gt;Sounds like a bug.&amp;nbsp; Report it to SAS.&lt;/P&gt;
&lt;P&gt;The format needs to use a width of 18 to display&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;1234+678901234+67890
15. september 2019
&lt;/PRE&gt;
&lt;P&gt;But the maximum width that it allows is 17.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you use a width of 16 it will abbreviate the month name and then it has room for the full year value.&lt;/P&gt;
&lt;PRE&gt;666   data _null_;
667   sep= "15SEP2019"d;
668   feb= "15FEB2019"d;
669   jan= "15JAN2019"d;
670    put (sep feb jan) (=/NORDFWDX17.) ;
671    put (sep feb jan) (=/NORDFWDX16.) ;
672   run;


sep=15. september 201
feb=15. februar 2019
jan=15. januar 2019

sep=15. sep. 2019
feb=15. feb. 2019
jan=15. jan. 2019
&lt;/PRE&gt;</description>
      <pubDate>Mon, 20 Jan 2020 17:27:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-date-format-NORDFWDX-truncates-year-for-septemper-month/m-p/618620#M181504</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-01-20T17:27:31Z</dc:date>
    </item>
    <item>
      <title>Re: SAS date format NORDFWDX. truncates year for septemper month</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-date-format-NORDFWDX-truncates-year-for-septemper-month/m-p/618626#M181505</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/68234"&gt;@Ullsokk&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is a comparison that supports the theory of a bug. There is no reason why the DANDFWDX format should behave differently from the NORDFWDX format (except for the spelling of december). The format EURDFWDX might work with your locale settings, it&amp;nbsp;gives the same as DANDFWDX in my setup:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data datotest (drop=i);
	format dd DANDFWDX. dn NORDFWDX. de EURDFWDX.;
	do i = 1 to 12;
		dd = mdy(i,15,2019);
		dn = dd;
		de = dd;
		output;
	end;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="dddn.gif" style="width: 401px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/35496i98BEF40A6A3B6884/image-size/large?v=v2&amp;amp;px=999" role="button" title="dddn.gif" alt="dddn.gif" /&gt;&lt;/span&gt;&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;
&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;&amp;nbsp;&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;
&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;&amp;nbsp;&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>Mon, 20 Jan 2020 17:49:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-date-format-NORDFWDX-truncates-year-for-septemper-month/m-p/618626#M181505</guid>
      <dc:creator>ErikLund_Jensen</dc:creator>
      <dc:date>2020-01-20T17:49:17Z</dc:date>
    </item>
    <item>
      <title>Re: SAS date format NORDFWDX. truncates year for septemper month</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-date-format-NORDFWDX-truncates-year-for-septemper-month/m-p/618628#M181506</link>
      <description>No, I need the month name in norwegian</description>
      <pubDate>Mon, 20 Jan 2020 17:52:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-date-format-NORDFWDX-truncates-year-for-septemper-month/m-p/618628#M181506</guid>
      <dc:creator>Ullsokk</dc:creator>
      <dc:date>2020-01-20T17:52:05Z</dc:date>
    </item>
    <item>
      <title>Re: SAS date format NORDFWDX. truncates year for septemper month</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-date-format-NORDFWDX-truncates-year-for-septemper-month/m-p/618630#M181507</link>
      <description>That doesnt fix the issue, but seems to be the problem. The needed length is 18</description>
      <pubDate>Mon, 20 Jan 2020 17:53:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-date-format-NORDFWDX-truncates-year-for-septemper-month/m-p/618630#M181507</guid>
      <dc:creator>Ullsokk</dc:creator>
      <dc:date>2020-01-20T17:53:41Z</dc:date>
    </item>
    <item>
      <title>Re: SAS date format NORDFWDX. truncates year for septemper month</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-date-format-NORDFWDX-truncates-year-for-septemper-month/m-p/618631#M181508</link>
      <description>&lt;P&gt;I had to implement this fix:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;tmp=put(&amp;amp;from.,NORDFWDX.);
from = tranwrd(tmp,'201','2019');&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Nasty code, and won't&amp;nbsp; work for 2020, but it works for my case (which is to export to csv)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jan 2020 17:58:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-date-format-NORDFWDX-truncates-year-for-septemper-month/m-p/618631#M181508</guid>
      <dc:creator>Ullsokk</dc:creator>
      <dc:date>2020-01-20T17:58:01Z</dc:date>
    </item>
    <item>
      <title>Re: SAS date format NORDFWDX. truncates year for septemper month</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-date-format-NORDFWDX-truncates-year-for-septemper-month/m-p/618632#M181509</link>
      <description>&lt;P&gt;That is really strange. Will give that a go if I need to.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jan 2020 17:59:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-date-format-NORDFWDX-truncates-year-for-septemper-month/m-p/618632#M181509</guid>
      <dc:creator>Ullsokk</dc:creator>
      <dc:date>2020-01-20T17:59:09Z</dc:date>
    </item>
    <item>
      <title>Re: SAS date format NORDFWDX. truncates year for septemper month</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-date-format-NORDFWDX-truncates-year-for-septemper-month/m-p/618658#M181520</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/12887"&gt;@ErikLund_Jensen&lt;/a&gt;&amp;nbsp;: Odd, I'm in SAS UE and running the same code yields:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot from 2020-01-20 11-07-44.png" style="width: 340px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/35497iD7C962F9AD96E091/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot from 2020-01-20 11-07-44.png" alt="Screenshot from 2020-01-20 11-07-44.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Maybe a versioning difference?&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/68234"&gt;@Ullsokk&lt;/a&gt;&amp;nbsp;, perhaps a custom picture format is the fix?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format;
	picture custnord (default=18) low-high='%0d. %B %Y' (datatype=date language=norwegian);
run;

data test;
	format dn custnord.;
	do dn = '01JAN2019'd to today();
		output;
	end;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 20 Jan 2020 18:59:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-date-format-NORDFWDX-truncates-year-for-septemper-month/m-p/618658#M181520</guid>
      <dc:creator>unison</dc:creator>
      <dc:date>2020-01-20T18:59:42Z</dc:date>
    </item>
    <item>
      <title>Re: SAS date format NORDFWDX. truncates year for septemper month</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-date-format-NORDFWDX-truncates-year-for-septemper-month/m-p/618659#M181521</link>
      <description>&lt;P&gt;Build the string yourself. The&amp;nbsp;NORDFMN format generates the full names.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data check;
do month=1 to 12 ;
  date=mdy(month,15,2019);
  length nord1 nord2 $18;
  nord1 = put(date,nordfwdx.-L);
  nord2 = catx(' ',put(date,day2.)||'.',put(date,NORDFMN.),year(date));
  output;
  format date yymmdd10.;
end;
run;

proc print;
 where nord1 ne nord2;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt;Obs    month          date          nord1                nord2

  9      9      2019-09-15    15. september 201    15. september 2019&lt;/PRE&gt;</description>
      <pubDate>Mon, 20 Jan 2020 18:59:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-date-format-NORDFWDX-truncates-year-for-septemper-month/m-p/618659#M181521</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-01-20T18:59:54Z</dc:date>
    </item>
    <item>
      <title>Re: SAS date format NORDFWDX. truncates year for septemper month</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-date-format-NORDFWDX-truncates-year-for-septemper-month/m-p/618669#M181523</link>
      <description>&lt;P&gt;Note that the format works when running SAS using Unicode support instead of using single byte encoding.&amp;nbsp; I think is because it change the max width for the format from 17 to 34 and the default width from 17 to 34.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jan 2020 19:34:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-date-format-NORDFWDX-truncates-year-for-septemper-month/m-p/618669#M181523</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-01-20T19:34:40Z</dc:date>
    </item>
    <item>
      <title>Re: SAS date format NORDFWDX. truncates year for septemper month</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-date-format-NORDFWDX-truncates-year-for-septemper-month/m-p/618700#M181529</link>
      <description>&lt;P&gt;This looks like a bug, but I can't find this format documented anywhere. Where did you hear of it?&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jan 2020 21:01:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-date-format-NORDFWDX-truncates-year-for-septemper-month/m-p/618700#M181529</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2020-01-20T21:01:15Z</dc:date>
    </item>
    <item>
      <title>Re: SAS date format NORDFWDX. truncates year for septemper month</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-date-format-NORDFWDX-truncates-year-for-septemper-month/m-p/618731#M181546</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/68234"&gt;@Ullsokk&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I had to implement this fix:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;tmp=put(&amp;amp;from.,NORDFWDX.);
from = tranwrd(tmp,'201','2019');&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Nasty code, and won't&amp;nbsp; work for 2020, but it works for my case (which is to export to csv)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/68234"&gt;@Ullsokk&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;May be better use the picture format as already proposed by&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/270457"&gt;@unison&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format;
  picture mydate(default=18)
    other='%d. %B %Y'(language=Norwegian datatype=date)
  ;
run;

data datotest;
  sep= "15SEP2019"d;
  feb= "15FEB2019"d;
  to = today();
  format sep feb to mydate.;
  output;
  stop;
run;

proc print;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 21 Jan 2020 00:22:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-date-format-NORDFWDX-truncates-year-for-septemper-month/m-p/618731#M181546</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2020-01-21T00:22:40Z</dc:date>
    </item>
    <item>
      <title>Re: SAS date format NORDFWDX. truncates year for septemper month</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-date-format-NORDFWDX-truncates-year-for-septemper-month/m-p/618762#M181559</link>
      <description>&lt;P&gt;The picture format looks like a winner.&lt;/P&gt;
&lt;P&gt;Use&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;'%d. %B %Y'&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;to match how the format handles single digit day of the month values.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You will need to use something a different picture format if you also want to support shorter widths like the system function can.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format;
  picture custnord (default=18 max=18)
   low-high='%d. %B %Y' (datatype=date language=norwegian)
  ;
  picture custnord_short (default=13 max=13)
   low-high='%d. %b. %Y' (datatype=date language=norwegian)
  ;
run;

data test;
  do month=1 to 12;
   do day=1,15;
    date=mdy(month,day,2019);
    custom1=put(date,custnord18.);
    nordic1=put(date,nordfwdx17.);  /* Cannot use w=18 if using single byte encoding */
    match1=left(custom1)=left(nordic1);
    custom2=put(date,custnord_short13.);
    nordic2=put(date,nordfwdx13.);
    match2=left(custom2)=left(nordic2);
    output;
    format date yymmdd10.;
  end;end;
run;

proc print; 
 where not match1 or not match2;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jan 2020 05:09:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-date-format-NORDFWDX-truncates-year-for-septemper-month/m-p/618762#M181559</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-01-21T05:09:33Z</dc:date>
    </item>
    <item>
      <title>Re: SAS date format NORDFWDX. truncates year for septemper month</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-date-format-NORDFWDX-truncates-year-for-septemper-month/m-p/618820#M181582</link>
      <description>&lt;P&gt;Not only is the length 17, but a longer length is not accepted on my system.&lt;/P&gt;
&lt;P&gt;Bug. Report it to tech support.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jan 2020 10:55:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-date-format-NORDFWDX-truncates-year-for-septemper-month/m-p/618820#M181582</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2020-01-21T10:55:14Z</dc:date>
    </item>
  </channel>
</rss>

