<?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: Converting ddmmmyyyy date to SAS Date in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Converting-ddmmmyyyy-date-to-SAS-Date/m-p/663386#M198020</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/259983"&gt;@kajal_30&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Can I get a contact number or we can do a zoom meeting to quickly discuss this ? I can provide all info on the fly&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Post ALL relevant information here. Describe IN FULL what you want to do. Provide source data in usable form (data step with datalines), and what you want to get out of it.&lt;/P&gt;</description>
    <pubDate>Fri, 19 Jun 2020 05:49:42 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2020-06-19T05:49:42Z</dc:date>
    <item>
      <title>Converting ddmmmyyyy date to SAS Date</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Converting-ddmmmyyyy-date-to-SAS-Date/m-p/663319#M197982</link>
      <description>&lt;P&gt;I have a data set where&amp;nbsp;&lt;/P&gt;&lt;P&gt;date = 30apr2020&lt;/P&gt;&lt;P&gt;I want to use this date to create another variable as&amp;nbsp;&lt;/P&gt;&lt;P&gt;datez = INPUT(PUT(18000000+date,z8.),yymmdd8.);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am getting error as invalid argument to function input.Can you please help if I need to convert the value of date first then use in datez ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jun 2020 21:07:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Converting-ddmmmyyyy-date-to-SAS-Date/m-p/663319#M197982</guid>
      <dc:creator>kajal_30</dc:creator>
      <dc:date>2020-06-18T21:07:27Z</dc:date>
    </item>
    <item>
      <title>Re: Converting ddmmmyyyy date to SAS Date</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Converting-ddmmmyyyy-date-to-SAS-Date/m-p/663325#M197983</link>
      <description>What is the type and format on the data?</description>
      <pubDate>Thu, 18 Jun 2020 21:36:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Converting-ddmmmyyyy-date-to-SAS-Date/m-p/663325#M197983</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-06-18T21:36:57Z</dc:date>
    </item>
    <item>
      <title>Re: Converting ddmmmyyyy date to SAS Date</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Converting-ddmmmyyyy-date-to-SAS-Date/m-p/663334#M197987</link>
      <description>&lt;P&gt;&lt;EM&gt;&amp;gt; I have a data set where&amp;nbsp; &amp;nbsp;date = 30apr2020&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;is meaningless.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is variable DATE a numeric&amp;nbsp;variable?&lt;/P&gt;
&lt;P&gt;Tell us what you want to do. Why add&amp;nbsp;&lt;SPAN&gt;18000000 ?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jun 2020 22:10:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Converting-ddmmmyyyy-date-to-SAS-Date/m-p/663334#M197987</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2020-06-18T22:10:15Z</dc:date>
    </item>
    <item>
      <title>Re: Converting ddmmmyyyy date to SAS Date</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Converting-ddmmmyyyy-date-to-SAS-Date/m-p/663351#M197997</link>
      <description>&lt;P&gt;format for the date is 8. , Informat date9., type number , length 8&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jun 2020 01:37:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Converting-ddmmmyyyy-date-to-SAS-Date/m-p/663351#M197997</guid>
      <dc:creator>kajal_30</dc:creator>
      <dc:date>2020-06-19T01:37:33Z</dc:date>
    </item>
    <item>
      <title>Re: Converting ddmmmyyyy date to SAS Date</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Converting-ddmmmyyyy-date-to-SAS-Date/m-p/663358#M197998</link>
      <description>&lt;P&gt;&lt;EM&gt;&amp;gt;format for the date is 8. , Informat date9., type number , length 8&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;This makes no sense whatsoever.&lt;/P&gt;
&lt;P&gt;What are you trying to achieve?&lt;/P&gt;
&lt;P&gt;At the moment, the code you are trying to run adds 18 million days to that date.&lt;/P&gt;
&lt;P&gt;Maybe this is a datetime.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data HAVE;
  DATE  = '30apr2020:0:0'dt;
  DATEZ = 18000000+DATE;
  putlog DATEZ= datetime20.;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;DATEZ=24NOV2020:08:00:00&lt;/FONT&gt;&lt;BR /&gt;But this is still extremely odd. What on earth is the goal?&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>Fri, 19 Jun 2020 02:05:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Converting-ddmmmyyyy-date-to-SAS-Date/m-p/663358#M197998</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2020-06-19T02:05:06Z</dc:date>
    </item>
    <item>
      <title>Re: Converting ddmmmyyyy date to SAS Date</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Converting-ddmmmyyyy-date-to-SAS-Date/m-p/663368#M198005</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/259983"&gt;@kajal_30&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;format for the date is 8. , Informat date9., type number , length 8&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;So what kind of values does it have?&amp;nbsp; It obviously cannot have the value you mentioned in your original post.&amp;nbsp; For it to have a valid that looked like 30APR2020 it would either have to be a character variable with a length of at least 9 bytes.&amp;nbsp; Or it would have to have the value of 22,035&amp;nbsp;(the date value corresponding to that date) and have the DATE9. format attached to it instead of the F8. format you listed.&lt;/P&gt;
&lt;P&gt;Is it possible you have integers where the digits look like C,YYM,MDD?&amp;nbsp; Where C is zero for 1800's , 1 for 1900's, 2 for 2000's, 3 for 2100's, etc.&amp;nbsp; But in that case why does it have the INFORMAT of DATE attached to it?&amp;nbsp; Not that informats have much impact on a dataset since they are just instructions for how to convert text to values and once you have a dataset you already have the values stored and are no longer converting from text.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If your conversion program makes some sense you also need to attach a date type format to the new variable or you will get the raw number of days printed instead of a human readable date representation.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jun 2020 03:59:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Converting-ddmmmyyyy-date-to-SAS-Date/m-p/663368#M198005</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-06-19T03:59:31Z</dc:date>
    </item>
    <item>
      <title>Re: Converting ddmmmyyyy date to SAS Date</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Converting-ddmmmyyyy-date-to-SAS-Date/m-p/663370#M198006</link>
      <description>Can we get on a call or zoom meeting I am totally stuck.As the code I posted is running fine and expected from last 10 years.</description>
      <pubDate>Fri, 19 Jun 2020 04:28:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Converting-ddmmmyyyy-date-to-SAS-Date/m-p/663370#M198006</guid>
      <dc:creator>kajal_30</dc:creator>
      <dc:date>2020-06-19T04:28:15Z</dc:date>
    </item>
    <item>
      <title>Re: Converting ddmmmyyyy date to SAS Date</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Converting-ddmmmyyyy-date-to-SAS-Date/m-p/663372#M198007</link>
      <description>I think the logic you described here is exactly what the code is doing.Even if I am able to calculate numeric value of date But still I am not sure why code is not able to add numeric value of date to 18000000 ?&lt;BR /&gt;let say I calculated value of date as 22083 but still it throws error if I submit below code.&lt;BR /&gt;datez = INPUT(PUT(18000000+date,z8.),yymmdd8.);&lt;BR /&gt;Please help and let me know what wrong am I doing here?</description>
      <pubDate>Fri, 19 Jun 2020 04:42:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Converting-ddmmmyyyy-date-to-SAS-Date/m-p/663372#M198007</guid>
      <dc:creator>kajal_30</dc:creator>
      <dc:date>2020-06-19T04:42:21Z</dc:date>
    </item>
    <item>
      <title>Re: Converting ddmmmyyyy date to SAS Date</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Converting-ddmmmyyyy-date-to-SAS-Date/m-p/663373#M198008</link>
      <description>&lt;P&gt;What EXACTLY does your date variable look like? Please review Tom's message and address his comments otherwise we really have no idea what's going on here.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Has nothing else changed? Are you sure your data is being read in the same way it was historically?&lt;/P&gt;
&lt;P&gt;Clearly something isn't working as expected, but I also suspect you're running code you don't fully understand.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jun 2020 04:45:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Converting-ddmmmyyyy-date-to-SAS-Date/m-p/663373#M198008</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-06-19T04:45:26Z</dc:date>
    </item>
    <item>
      <title>Re: Converting ddmmmyyyy date to SAS Date</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Converting-ddmmmyyyy-date-to-SAS-Date/m-p/663374#M198009</link>
      <description>I think the logic you described here is exactly what the code is doing.Even if I am able to calculate numeric value of date But still I am not sure why code is not able to add numeric value of date to 18000000 ?&lt;BR /&gt;let say I calculated value of date as 22083 but still it throws error if I submit below code.&lt;BR /&gt;datez = INPUT(PUT(18000000+date,z8.),yymmdd8.);&lt;BR /&gt;Please help and let me know what wrong am I doing here?</description>
      <pubDate>Fri, 19 Jun 2020 04:50:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Converting-ddmmmyyyy-date-to-SAS-Date/m-p/663374#M198009</guid>
      <dc:creator>kajal_30</dc:creator>
      <dc:date>2020-06-19T04:50:59Z</dc:date>
    </item>
    <item>
      <title>Re: Converting ddmmmyyyy date to SAS Date</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Converting-ddmmmyyyy-date-to-SAS-Date/m-p/663375#M198010</link>
      <description>&lt;P&gt;Please post the actual code you're running and especially the log where the error shows up.&lt;/P&gt;
&lt;P&gt;Just writing "still throws an error" doesn't help much. Also make sure that you look at the very first Warnings and especially Errors in your code and resolve these first.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jun 2020 04:56:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Converting-ddmmmyyyy-date-to-SAS-Date/m-p/663375#M198010</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2020-06-19T04:56:03Z</dc:date>
    </item>
    <item>
      <title>Re: Converting ddmmmyyyy date to SAS Date</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Converting-ddmmmyyyy-date-to-SAS-Date/m-p/663376#M198011</link>
      <description>&lt;P&gt;Your code doesn't work because of the INPUT().&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;INPUT() is expecting a date in the format of yymmdd but after you add 18000000 to your number you do not end up with a character string that looks like a date so it cannot be read in correctly.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's a fully worked example illustrating the issue. Line 78 illustrates the issue for you. Check the log.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt; 69         data have;
 70         date = '30Apr2009'd;
 71         datez = INPUT(PUT(18000000+date,z8.),yymmdd8.);
 72         
 73         put "date= " date;
 74         put "datez= " datez;
 75         
 76         part1 = PUT(18000000+date,z8.);
 77         put "Part 1: " part1;
&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt; 78         part2 = input(part1, yymmdd8.);&lt;/STRONG&gt;&lt;/FONT&gt;
 79         put "Part 2: " part2;
 80         
 81         run;
 
 NOTE: Invalid argument to function INPUT at line 71 column 9.
 date= 18017
 datez= .
 Part 1: 18018017
 NOTE: Invalid argument to function INPUT at line 78 column 9.
 Part 2: .
 date=18017 datez=. part1=&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;18018017&lt;/STRONG&gt;&lt;/FONT&gt; part2=. _ERROR_=1 _N_=1
 NOTE: Mathematical operations could not be performed at the following places. The results of the operations have been set to 
       missing values.
       Each place is given by: (Number of times) at (Line):(Column).
       1 at 71:9   1 at 78:9   
 NOTE: The data set WORK.HAVE has 1 observations and 4 variables.
 NOTE: DATA statement used (Total process time):
       real time           0.00 seconds
       cpu time            0.00 seconds&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;CODE class=" language-sas"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;18018017 -&amp;gt;&amp;nbsp;YYMMDD&amp;nbsp;doesn't&amp;nbsp;align&amp;nbsp;unless&amp;nbsp;that's&amp;nbsp;1801,&amp;nbsp;80&amp;nbsp;month&amp;nbsp;which&amp;nbsp;I don't&amp;nbsp;know&amp;nbsp;what&amp;nbsp;that&amp;nbsp;means&amp;nbsp;and 17 days is valid. &amp;nbsp;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jun 2020 05:01:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Converting-ddmmmyyyy-date-to-SAS-Date/m-p/663376#M198011</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-06-19T05:01:45Z</dc:date>
    </item>
    <item>
      <title>Re: Converting ddmmmyyyy date to SAS Date</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Converting-ddmmmyyyy-date-to-SAS-Date/m-p/663377#M198012</link>
      <description>I strongly suspect how you read the date variable has changed somewhere upstream and your code isn't accounting for it correctly anymore.</description>
      <pubDate>Fri, 19 Jun 2020 05:02:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Converting-ddmmmyyyy-date-to-SAS-Date/m-p/663377#M198012</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-06-19T05:02:45Z</dc:date>
    </item>
    <item>
      <title>Re: Converting ddmmmyyyy date to SAS Date</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Converting-ddmmmyyyy-date-to-SAS-Date/m-p/663378#M198013</link>
      <description>&lt;P&gt;The code I am running is a main frame code which I am trying to convert to a base sas&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jun 2020 05:07:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Converting-ddmmmyyyy-date-to-SAS-Date/m-p/663378#M198013</guid>
      <dc:creator>kajal_30</dc:creator>
      <dc:date>2020-06-19T05:07:58Z</dc:date>
    </item>
    <item>
      <title>Re: Converting ddmmmyyyy date to SAS Date</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Converting-ddmmmyyyy-date-to-SAS-Date/m-p/663380#M198014</link>
      <description>Seriously? Is the code erroring on the mainframe or base?</description>
      <pubDate>Fri, 19 Jun 2020 05:16:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Converting-ddmmmyyyy-date-to-SAS-Date/m-p/663380#M198014</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-06-19T05:16:27Z</dc:date>
    </item>
    <item>
      <title>Re: Converting ddmmmyyyy date to SAS Date</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Converting-ddmmmyyyy-date-to-SAS-Date/m-p/663381#M198015</link>
      <description>&lt;P&gt;code showing error on base sas&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jun 2020 05:21:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Converting-ddmmmyyyy-date-to-SAS-Date/m-p/663381#M198015</guid>
      <dc:creator>kajal_30</dc:creator>
      <dc:date>2020-06-19T05:21:43Z</dc:date>
    </item>
    <item>
      <title>Re: Converting ddmmmyyyy date to SAS Date</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Converting-ddmmmyyyy-date-to-SAS-Date/m-p/663382#M198016</link>
      <description>Can I get a contact number or we can do a zoom meeting to quickly discuss this ? I can provide all info on the fly</description>
      <pubDate>Fri, 19 Jun 2020 05:23:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Converting-ddmmmyyyy-date-to-SAS-Date/m-p/663382#M198016</guid>
      <dc:creator>kajal_30</dc:creator>
      <dc:date>2020-06-19T05:23:40Z</dc:date>
    </item>
    <item>
      <title>Re: Converting ddmmmyyyy date to SAS Date</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Converting-ddmmmyyyy-date-to-SAS-Date/m-p/663383#M198017</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/259983"&gt;@kajal_30&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Can I get a contact number or we can do a zoom meeting to quickly discuss this ? I can provide all info on the fly&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;That's not how the SAS Support forums work. You can try and call SAS TechSupport though - or if you're in the US/Canada use the &lt;A href="https://support.sas.com/en/technical-support/contact-sas/chat-technical-support.html" target="_self"&gt;chat&lt;/A&gt; tool.&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/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16961"&gt;@ChrisNZ&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It looks like&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp;has the answer to the 18000000 mystery given &lt;A href="https://communities.sas.com/t5/General-SAS-Programming/Leap-Year-date-conversion/td-p/199798" target="_self"&gt;here&lt;/A&gt;:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;So to convert 7 digit mainframe dates of the form cYYMMDD, where c=1 means 1900, to normal 8 digit dates of the form CCYYMMDD you need to add 18,000,000.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jun 2020 05:40:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Converting-ddmmmyyyy-date-to-SAS-Date/m-p/663383#M198017</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2020-06-19T05:40:10Z</dc:date>
    </item>
    <item>
      <title>Re: Converting ddmmmyyyy date to SAS Date</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Converting-ddmmmyyyy-date-to-SAS-Date/m-p/663384#M198018</link>
      <description>&lt;P&gt;Sorry, but with the data you described, that code is useless. It is designed for a numeric value that is not a SAS date at all.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jun 2020 05:41:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Converting-ddmmmyyyy-date-to-SAS-Date/m-p/663384#M198018</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-06-19T05:41:32Z</dc:date>
    </item>
    <item>
      <title>Re: Converting ddmmmyyyy date to SAS Date</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Converting-ddmmmyyyy-date-to-SAS-Date/m-p/663385#M198019</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/259983"&gt;@kajal_30&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;The code I am running is a main frame code which I am trying to convert to a base sas&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;So it is positively not code that "ran fine for 10 years", not in the current environment. Do not force us to pull information out of your nose bit by bit.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jun 2020 05:45:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Converting-ddmmmyyyy-date-to-SAS-Date/m-p/663385#M198019</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-06-19T05:45:44Z</dc:date>
    </item>
  </channel>
</rss>

