<?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: Convert character &amp;quot;YYYY-MM&amp;quot; to numeric end date in one step in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Convert-character-quot-YYYY-MM-quot-to-numeric-end-date-in-one/m-p/678666#M204859</link>
    <description>&lt;P&gt;you need to understand how SAS deals with dates.&lt;/P&gt;
&lt;P&gt;I hope you can run sample codes, just to try and learn.&lt;/P&gt;
&lt;P&gt;1) sas date is the number of days since 01JAN1960.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; to check it run next code and see the log:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
     dt1 = '01JAN1960'd; put dt1=;
     dt2 = '31MAR2017'd; put dt2=;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;What have you got in log ?&lt;/P&gt;
&lt;P&gt;Does the dt2 value reminds something ? - see your last post.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you read the whole conversation in this blog you will find different formats to&lt;/P&gt;
&lt;P&gt;report a date as a combination of year and month.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;pay attention - same format can be used as: informat, put to lug or converting a numeric date variable to a char type variable. Try and run next sample code:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
     dt1 = today();
     putlog dt1=  dt1= ddmmyy10.  dt1=yymmd7. ;
     
     dt2= put(dt1,5.); put dt2=;
     dt3 = put(dt1,yymmdds10.); put dt3=;
     dt4 = put(dt1,yymmp7.); put dt4=;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;if run above code you probably noticed that the same date DT1 can be displayed/converted&lt;/P&gt;
&lt;P&gt;to different formats.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Having&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;&amp;nbsp;references to documentation (I have learned from it) and previous mine posts, I hope you can choose the proper format to create a char variable from a sas date, as you want.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 22 Aug 2020 12:46:45 GMT</pubDate>
    <dc:creator>Shmuel</dc:creator>
    <dc:date>2020-08-22T12:46:45Z</dc:date>
    <item>
      <title>Convert character "YYYY-MM" to numeric end date in one step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-character-quot-YYYY-MM-quot-to-numeric-end-date-in-one/m-p/678638#M204840</link>
      <description>&lt;P&gt;I'm trying to convert character variable to numeric date format in one step, but it's not working. Looking for guidance to resolve the error. I've to do this in one data step as I can able to achieve the result in two data steps.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Code which I tried is,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;data want;
    PERIOD_START_MONTH ="2017-03";
    PERIOD_START_MONTH =intnx('month',input(compress(PERIOD_START_MONTH,'-'),yymmn6.),0,"END");
    format PERIOD_START_MONTH date9.;
run;
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;Log is,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;26         data want;
27             PERIOD_START_MONTH ="2017-03";
28             PERIOD_START_MONTH =intnx('month',input(compress(PERIOD_START_MONTH,'-'),yymmn6.),0,"END");
29             format PERIOD_START_MONTH date9.;
                                         ______
                                         484
NOTE 484-185: Format $DATE was not found or could not be loaded.

30         run;&lt;/PRE&gt;
&lt;P&gt;Excepted result is '31MAR2017' to the variable 'PERIOD_START_MONTH'&lt;/P&gt;</description>
      <pubDate>Sat, 22 Aug 2020 04:54:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-character-quot-YYYY-MM-quot-to-numeric-end-date-in-one/m-p/678638#M204840</guid>
      <dc:creator>David_Billa</dc:creator>
      <dc:date>2020-08-22T04:54:44Z</dc:date>
    </item>
    <item>
      <title>Re: Convert character "YYYY-MM" to numeric end date in one step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-character-quot-YYYY-MM-quot-to-numeric-end-date-in-one/m-p/678639#M204841</link>
      <description>&lt;P&gt;PERIOD_START_MONTH is character, so you can't use a numeric format. Apply the format to the new variable right.&lt;/P&gt;</description>
      <pubDate>Sat, 22 Aug 2020 04:36:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-character-quot-YYYY-MM-quot-to-numeric-end-date-in-one/m-p/678639#M204841</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-08-22T04:36:00Z</dc:date>
    </item>
    <item>
      <title>Re: Convert character "YYYY-MM" to numeric end date in one step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-character-quot-YYYY-MM-quot-to-numeric-end-date-in-one/m-p/678640#M204842</link>
      <description>&lt;P&gt;May I know why it's not working if I try to change the datatype and format of the same variable (PERIOD_START_MONTH)&amp;nbsp;in one step? I've to implement this change in one single step.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;26         data want;
27             PERIOD_START_MONTH ="2017-03";
28             PERIOD_START_MONTH =intnx('month',input(compress(PERIOD_START_MONTH,'-'),yymmn6.),0,"END");
29             format PERIOD_START_MONTH date9.;
                                         ______
                                         484
NOTE 484-185: Format $DATE was not found or could not be loaded.

30         run;&lt;/PRE&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>Sat, 22 Aug 2020 04:53:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-character-quot-YYYY-MM-quot-to-numeric-end-date-in-one/m-p/678640#M204842</guid>
      <dc:creator>David_Billa</dc:creator>
      <dc:date>2020-08-22T04:53:01Z</dc:date>
    </item>
    <item>
      <title>Re: Convert character "YYYY-MM" to numeric end date in one step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-character-quot-YYYY-MM-quot-to-numeric-end-date-in-one/m-p/678643#M204843</link>
      <description>&lt;P&gt;The only way to change variable type is by using a similar method as:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data new;
 set have(rename=(date=new_name)); /* input date is char type */
       date= input(new_name,&amp;lt;date informat&amp;gt;.); /* new date as num type */
    ....
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 22 Aug 2020 06:33:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-character-quot-YYYY-MM-quot-to-numeric-end-date-in-one/m-p/678643#M204843</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2020-08-22T06:33:17Z</dc:date>
    </item>
    <item>
      <title>Re: Convert character "YYYY-MM" to numeric end date in one step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-character-quot-YYYY-MM-quot-to-numeric-end-date-in-one/m-p/678644#M204844</link>
      <description>Well. I have a different question which is off the topic.&lt;BR /&gt;&lt;BR /&gt;How to convert numeric date value '31MAR2017'd to character value "2017-03"?&lt;BR /&gt;</description>
      <pubDate>Sat, 22 Aug 2020 05:59:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-character-quot-YYYY-MM-quot-to-numeric-end-date-in-one/m-p/678644#M204844</guid>
      <dc:creator>David_Billa</dc:creator>
      <dc:date>2020-08-22T05:59:21Z</dc:date>
    </item>
    <item>
      <title>Re: Convert character "YYYY-MM" to numeric end date in one step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-character-quot-YYYY-MM-quot-to-numeric-end-date-in-one/m-p/678645#M204845</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/292396"&gt;@David_Billa&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;May I know why it's not working if I try to change the datatype and format of the same variable (PERIOD_START_MONTH)&amp;nbsp;in one step? I've to implement this change in one single step.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;26         data want;
27             PERIOD_START_MONTH ="2017-03";
28             PERIOD_START_MONTH =intnx('month',input(compress(PERIOD_START_MONTH,'-'),yymmn6.),0,"END");
29             format PERIOD_START_MONTH date9.;
                                         ______
                                         484
NOTE 484-185: Format $DATE was not found or could not be loaded.

30         run;&lt;/PRE&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Because you simply can't. The variable type is determined once during the compilation phase, and the data step compiler sets up the variable in the PDV according to that. To change the type of a variable, you have to do the rename old/create new/drop old dance.&lt;/P&gt;</description>
      <pubDate>Sat, 22 Aug 2020 06:31:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-character-quot-YYYY-MM-quot-to-numeric-end-date-in-one/m-p/678645#M204845</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-08-22T06:31:00Z</dc:date>
    </item>
    <item>
      <title>Re: Convert character "YYYY-MM" to numeric end date in one step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-character-quot-YYYY-MM-quot-to-numeric-end-date-in-one/m-p/678646#M204846</link>
      <description>&lt;P&gt;Using format yymms7. will display yyyy/mm then replace the '/' into '-'&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
   date = '31MAR2017'd;
   year_month = translate(put(date,yymms7.),'-','/');&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 22 Aug 2020 06:31:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-character-quot-YYYY-MM-quot-to-numeric-end-date-in-one/m-p/678646#M204846</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2020-08-22T06:31:32Z</dc:date>
    </item>
    <item>
      <title>Re: Convert character "YYYY-MM" to numeric end date in one step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-character-quot-YYYY-MM-quot-to-numeric-end-date-in-one/m-p/678647#M204847</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/292396"&gt;@David_Billa&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Well. I have a different question which is off the topic.&lt;BR /&gt;&lt;BR /&gt;How to convert numeric date value '31MAR2017'd to character value "2017-03"?&lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Maxim 1: Read the Documentation.&lt;/P&gt;
&lt;P&gt;In this case,&amp;nbsp;&lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=leforinforref&amp;amp;docsetTarget=n0p2fmevfgj470n17h4k9f27qjag.htm&amp;amp;locale=en" target="_blank" rel="noopener"&gt;Formats by Category&lt;/A&gt;. Scroll down to the "Date" category.&lt;/P&gt;</description>
      <pubDate>Sat, 22 Aug 2020 06:37:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-character-quot-YYYY-MM-quot-to-numeric-end-date-in-one/m-p/678647#M204847</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-08-22T06:37:28Z</dc:date>
    </item>
    <item>
      <title>Re: Convert character "YYYY-MM" to numeric end date in one step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-character-quot-YYYY-MM-quot-to-numeric-end-date-in-one/m-p/678649#M204848</link>
      <description>&lt;P&gt;The documentation for using x if a date format is:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;"&lt;SPAN&gt;where the&amp;nbsp;&lt;/SPAN&gt;&lt;EM class="xisDoc-userSuppliedValue"&gt;x&lt;/EM&gt;&lt;SPAN&gt;i n the format name is a character that represents the special character that separates the day, month, and year. The special character can be a blank character, colon (:), hyphen (-),no separator, period (.), or slash&lt;/SPAN&gt;&lt;/STRONG&gt; (/)."&lt;/P&gt;
&lt;P&gt;BUT it doesn't say which character to use in each case.&lt;/P&gt;
&lt;P&gt;Mostly it is the first character of it's name except the for hyphen - use 'd' for '-', as in next code:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
  dt = today();
  put dt yymmn6.;
  put dt yymms7.; * Slash ;
  put dt yymmp7.; * Point ;
  put dt yymmc7.; * Colon ;
  put dt yymmd7.; * hyphen;
  
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 22 Aug 2020 07:08:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-character-quot-YYYY-MM-quot-to-numeric-end-date-in-one/m-p/678649#M204848</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2020-08-22T07:08:11Z</dc:date>
    </item>
    <item>
      <title>Re: Convert character "YYYY-MM" to numeric end date in one step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-character-quot-YYYY-MM-quot-to-numeric-end-date-in-one/m-p/678650#M204849</link>
      <description>Yes, but it will just apply the format. But my question is how to change&lt;BR /&gt;the numeric  variable value '31MAR2017'd to character variable with value&lt;BR /&gt;"2017-03"?&lt;BR /&gt;</description>
      <pubDate>Sat, 22 Aug 2020 07:39:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-character-quot-YYYY-MM-quot-to-numeric-end-date-in-one/m-p/678650#M204849</guid>
      <dc:creator>David_Billa</dc:creator>
      <dc:date>2020-08-22T07:39:21Z</dc:date>
    </item>
    <item>
      <title>Re: Convert character "YYYY-MM" to numeric end date in one step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-character-quot-YYYY-MM-quot-to-numeric-end-date-in-one/m-p/678653#M204850</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/292396"&gt;@David_Billa&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Yes, but it will just apply the format. But my question is how to change&lt;BR /&gt;the numeric variable value '31MAR2017'd to character variable with value&lt;BR /&gt;"2017-03"?&lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Create the new character variable with the PUT function and the wanted format.&lt;/P&gt;</description>
      <pubDate>Sat, 22 Aug 2020 08:35:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-character-quot-YYYY-MM-quot-to-numeric-end-date-in-one/m-p/678653#M204850</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-08-22T08:35:48Z</dc:date>
    </item>
    <item>
      <title>Re: Convert character "YYYY-MM" to numeric end date in one step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-character-quot-YYYY-MM-quot-to-numeric-end-date-in-one/m-p/678659#M204853</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/88384"&gt;@Shmuel&lt;/a&gt;&amp;nbsp; I tried the code below. Desired ouput for 'dt_char' is &lt;STRONG&gt;2017-03&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But the Output which I got is 20909 which is not right. I would like to know the Format to get this done. Clearly Format $8. is not right.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;data want;
    dt ='31MAR2017'd;
    format dt date9.;
    dt_char=put(dt,$8.);
run;&lt;/PRE&gt;</description>
      <pubDate>Sat, 22 Aug 2020 10:37:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-character-quot-YYYY-MM-quot-to-numeric-end-date-in-one/m-p/678659#M204853</guid>
      <dc:creator>David_Billa</dc:creator>
      <dc:date>2020-08-22T10:37:43Z</dc:date>
    </item>
    <item>
      <title>Re: Convert character "YYYY-MM" to numeric end date in one step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-character-quot-YYYY-MM-quot-to-numeric-end-date-in-one/m-p/678661#M204855</link>
      <description>&lt;P&gt;Maxim 2:&amp;nbsp;&lt;STRONG&gt;Read the Log!&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;You will find a NOTE because you used a character format for a numeric variable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And why are you using a format that is not in the&amp;nbsp;&lt;STRONG&gt;Date&lt;/STRONG&gt; category, to which I pointed you&amp;nbsp;&lt;STRONG&gt;explicitly&lt;/STRONG&gt;?&lt;/P&gt;
&lt;P&gt;You will find the format you need in the Date category, but I will not insult your intelligence by spoon-feeding it to you. Instead I'm trying to enable you to solve such simple issues by yourself.&lt;/P&gt;</description>
      <pubDate>Sat, 22 Aug 2020 11:43:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-character-quot-YYYY-MM-quot-to-numeric-end-date-in-one/m-p/678661#M204855</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-08-22T11:43:22Z</dc:date>
    </item>
    <item>
      <title>Re: Convert character "YYYY-MM" to numeric end date in one step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-character-quot-YYYY-MM-quot-to-numeric-end-date-in-one/m-p/678666#M204859</link>
      <description>&lt;P&gt;you need to understand how SAS deals with dates.&lt;/P&gt;
&lt;P&gt;I hope you can run sample codes, just to try and learn.&lt;/P&gt;
&lt;P&gt;1) sas date is the number of days since 01JAN1960.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; to check it run next code and see the log:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
     dt1 = '01JAN1960'd; put dt1=;
     dt2 = '31MAR2017'd; put dt2=;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;What have you got in log ?&lt;/P&gt;
&lt;P&gt;Does the dt2 value reminds something ? - see your last post.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you read the whole conversation in this blog you will find different formats to&lt;/P&gt;
&lt;P&gt;report a date as a combination of year and month.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;pay attention - same format can be used as: informat, put to lug or converting a numeric date variable to a char type variable. Try and run next sample code:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
     dt1 = today();
     putlog dt1=  dt1= ddmmyy10.  dt1=yymmd7. ;
     
     dt2= put(dt1,5.); put dt2=;
     dt3 = put(dt1,yymmdds10.); put dt3=;
     dt4 = put(dt1,yymmp7.); put dt4=;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;if run above code you probably noticed that the same date DT1 can be displayed/converted&lt;/P&gt;
&lt;P&gt;to different formats.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Having&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;&amp;nbsp;references to documentation (I have learned from it) and previous mine posts, I hope you can choose the proper format to create a char variable from a sas date, as you want.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 22 Aug 2020 12:46:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-character-quot-YYYY-MM-quot-to-numeric-end-date-in-one/m-p/678666#M204859</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2020-08-22T12:46:45Z</dc:date>
    </item>
  </channel>
</rss>

