<?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: have character string looks like a date but isn't - needs to be a date SAS ENTERPRISE in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/have-character-string-looks-like-a-date-but-isn-t-needs-to-be-a/m-p/526669#M5129</link>
    <description>&lt;P&gt;I was able to do it, thank you!&lt;/P&gt;</description>
    <pubDate>Sat, 12 Jan 2019 23:17:24 GMT</pubDate>
    <dc:creator>maliksmom2000</dc:creator>
    <dc:date>2019-01-12T23:17:24Z</dc:date>
    <item>
      <title>have character string looks like a date but isn't - needs to be a date SAS ENTERPRISE</title>
      <link>https://communities.sas.com/t5/New-SAS-User/have-character-string-looks-like-a-date-but-isn-t-needs-to-be-a/m-p/526623#M5109</link>
      <description>&lt;P&gt;I have an excel spreadsheet that regradless of what I have done to the cell, I cannot get it to be a date - I only want it in SAS as a date - I don't care about the actual spreadsheet.&amp;nbsp; When I upload it it is a character string but I don't know how to make it be recognized as a date (maybe rearrange the data?).&amp;nbsp; Here what it says:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Each date in the character cell is in the following format: YYYY-MMM-DD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried the input function but that didn't work&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using SAS Enterprise&lt;/P&gt;</description>
      <pubDate>Sat, 12 Jan 2019 18:35:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/have-character-string-looks-like-a-date-but-isn-t-needs-to-be-a/m-p/526623#M5109</guid>
      <dc:creator>maliksmom2000</dc:creator>
      <dc:date>2019-01-12T18:35:35Z</dc:date>
    </item>
    <item>
      <title>Re: have character string looks like a date but isn't - needs to be a date SAS ENTERPRISE</title>
      <link>https://communities.sas.com/t5/New-SAS-User/have-character-string-looks-like-a-date-but-isn-t-needs-to-be-a/m-p/526632#M5110</link>
      <description>&lt;P&gt;INPUT() is the correct method. Show what you've tried and we can tell you where you went wrong.&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/168338"&gt;@maliksmom2000&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I have an excel spreadsheet that regradless of what I have done to the cell, I cannot get it to be a date - I only want it in SAS as a date - I don't care about the actual spreadsheet.&amp;nbsp; When I upload it it is a character string but I don't know how to make it be recognized as a date (maybe rearrange the data?).&amp;nbsp; Here what it says:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Each date in the character cell is in the following format: YYYY-MMM-DD&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have tried the input function but that didn't work&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am using SAS Enterprise&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 12 Jan 2019 19:06:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/have-character-string-looks-like-a-date-but-isn-t-needs-to-be-a/m-p/526632#M5110</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-01-12T19:06:41Z</dc:date>
    </item>
    <item>
      <title>Re: have character string looks like a date but isn't - needs to be a date SAS ENTERPRISE</title>
      <link>https://communities.sas.com/t5/New-SAS-User/have-character-string-looks-like-a-date-but-isn-t-needs-to-be-a/m-p/526635#M5111</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
data have;
input mydate $10.;
cards;
2019-01-01
2012-11-02
;

data want;
set have;
wantdate = input(mydate, yymmdd10.);
format wantdate date9.;

run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 12 Jan 2019 19:13:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/have-character-string-looks-like-a-date-but-isn-t-needs-to-be-a/m-p/526635#M5111</guid>
      <dc:creator>VDD</dc:creator>
      <dc:date>2019-01-12T19:13:05Z</dc:date>
    </item>
    <item>
      <title>Re: have character string looks like a date but isn't - needs to be a date SAS ENTERPRISE</title>
      <link>https://communities.sas.com/t5/New-SAS-User/have-character-string-looks-like-a-date-but-isn-t-needs-to-be-a/m-p/526646#M5115</link>
      <description>&lt;P&gt;Ok Please don't laugh at me, I'm using SAS Enterprise for the advanced expressions so I am not sure exactly what to type in.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The columns with the text that should be date format are:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Reporting&lt;/P&gt;&lt;P&gt;SenirorityDate&lt;/P&gt;&lt;P&gt;EffectiveDate&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I put the following after playing for a minute to see if I could do it without sheepishly coming back to you but needless to say it was rejected.&amp;nbsp; So Sorry! This one is new for me.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;input( t1.SeniorityDate, DATE10. yymmdd10.)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 12 Jan 2019 20:22:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/have-character-string-looks-like-a-date-but-isn-t-needs-to-be-a/m-p/526646#M5115</guid>
      <dc:creator>maliksmom2000</dc:creator>
      <dc:date>2019-01-12T20:22:11Z</dc:date>
    </item>
    <item>
      <title>Re: have character string looks like a date but isn't - needs to be a date SAS ENTERPRISE</title>
      <link>https://communities.sas.com/t5/New-SAS-User/have-character-string-looks-like-a-date-but-isn-t-needs-to-be-a/m-p/526648#M5116</link>
      <description>&lt;P&gt;First, let's clear up what your data values actually look like.&amp;nbsp; You explain the format as YYYY-MMM-DD&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Does that mean you are observing values like&amp;nbsp; 2019-JAN-12&amp;nbsp; ??&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm not sure that SAS has an informat to match.&amp;nbsp; As you suggest, you might have to rearrange the pieces:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;newvar = input(scan(SeniorityDate, 3) || scan(SeniorityDate, 2) || scan(SeniorityDate, 1), date9.);&lt;/P&gt;
&lt;P&gt;format newvar yymmdd10.;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 12 Jan 2019 21:01:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/have-character-string-looks-like-a-date-but-isn-t-needs-to-be-a/m-p/526648#M5116</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2019-01-12T21:01:03Z</dc:date>
    </item>
    <item>
      <title>Re: have character string looks like a date but isn't - needs to be a date SAS ENTERPRISE</title>
      <link>https://communities.sas.com/t5/New-SAS-User/have-character-string-looks-like-a-date-but-isn-t-needs-to-be-a/m-p/526649#M5117</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/168338"&gt;@maliksmom2000&lt;/a&gt;&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/4954"&gt;@Astounding&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;If the the dates are yyyy-mmm-dd the ANYDTDTE11. informat appears to work. e.g.:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
  input char_date $11.;
  date=input(char_date,anydtdte11.);
  format date date9.;
  cards;
2019-JAN-12
2019-JAN-13
;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 12 Jan 2019 21:21:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/have-character-string-looks-like-a-date-but-isn-t-needs-to-be-a/m-p/526649#M5117</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2019-01-12T21:21:55Z</dc:date>
    </item>
    <item>
      <title>Re: have character string looks like a date but isn't - needs to be a date SAS ENTERPRISE</title>
      <link>https://communities.sas.com/t5/New-SAS-User/have-character-string-looks-like-a-date-but-isn-t-needs-to-be-a/m-p/526651#M5118</link>
      <description>&lt;P&gt;Thank you so much for responding!&amp;nbsp; yes I am seeing (example) 1999-JAN-01&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I believe I'd need to rearrange the text so it could be made into a date but without retyping it I don't really know how.&amp;nbsp; It's too many records in excel to play with.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does the newvar function do that?&amp;nbsp; I put the following into SAS Enterprise and got the following error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PROC SQL NOEXEC;&lt;BR /&gt;SELECT (newvar = input(scan(t1.SeniorityDate, 3) || scan(t1.SeniorityDate, 2) || scan(t1.SeniorityDate, 1), date9.))&lt;BR /&gt;AS CALCULATION&lt;BR /&gt;FROM WORK.'FLD EMPLOYEES QUERY 01072019'n t1;&lt;BR /&gt;"ERROR: The following columns were not found in the contributing tables: newvar."&lt;/P&gt;</description>
      <pubDate>Sat, 12 Jan 2019 21:57:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/have-character-string-looks-like-a-date-but-isn-t-needs-to-be-a/m-p/526651#M5118</guid>
      <dc:creator>maliksmom2000</dc:creator>
      <dc:date>2019-01-12T21:57:15Z</dc:date>
    </item>
    <item>
      <title>Re: have character string looks like a date but isn't - needs to be a date SAS ENTERPRISE</title>
      <link>https://communities.sas.com/t5/New-SAS-User/have-character-string-looks-like-a-date-but-isn-t-needs-to-be-a/m-p/526652#M5119</link>
      <description>&lt;P&gt;I will try it!&lt;/P&gt;</description>
      <pubDate>Sat, 12 Jan 2019 21:57:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/have-character-string-looks-like-a-date-but-isn-t-needs-to-be-a/m-p/526652#M5119</guid>
      <dc:creator>maliksmom2000</dc:creator>
      <dc:date>2019-01-12T21:57:39Z</dc:date>
    </item>
    <item>
      <title>Re: have character string looks like a date but isn't - needs to be a date SAS ENTERPRISE</title>
      <link>https://communities.sas.com/t5/New-SAS-User/have-character-string-looks-like-a-date-but-isn-t-needs-to-be-a/m-p/526654#M5121</link>
      <description>&lt;P&gt;I cut and pasted what you have replacing char_date with my character dated column (SeniorityDate).&amp;nbsp; I played and changed it to:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;input t1.SeniorityDate $11.;&lt;BR /&gt;date=input(t1.SeniorityDate,anydtdte11.);&lt;BR /&gt;format date date9.;&lt;BR /&gt;cards;&lt;BR /&gt;2019-JAN-12&lt;BR /&gt;2019-JAN-13&lt;BR /&gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Which SAS didn't like either......&lt;/P&gt;</description>
      <pubDate>Sat, 12 Jan 2019 22:00:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/have-character-string-looks-like-a-date-but-isn-t-needs-to-be-a/m-p/526654#M5121</guid>
      <dc:creator>maliksmom2000</dc:creator>
      <dc:date>2019-01-12T22:00:14Z</dc:date>
    </item>
    <item>
      <title>Re: have character string looks like a date but isn't - needs to be a date SAS ENTERPRISE</title>
      <link>https://communities.sas.com/t5/New-SAS-User/have-character-string-looks-like-a-date-but-isn-t-needs-to-be-a/m-p/526656#M5122</link>
      <description>&lt;P&gt;I tried using an INPUT function thinking I could change the characters to date but I couldn't.&amp;nbsp; If I changed the dates to remove the hyphen, is there an easier way to make them dates?&amp;nbsp; I can do that easily in excel.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;19940101 (from 1994-JAN-01)&lt;/P&gt;</description>
      <pubDate>Sat, 12 Jan 2019 22:03:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/have-character-string-looks-like-a-date-but-isn-t-needs-to-be-a/m-p/526656#M5122</guid>
      <dc:creator>maliksmom2000</dc:creator>
      <dc:date>2019-01-12T22:03:08Z</dc:date>
    </item>
    <item>
      <title>Re: have character string looks like a date but isn't - needs to be a date SAS ENTERPRISE</title>
      <link>https://communities.sas.com/t5/New-SAS-User/have-character-string-looks-like-a-date-but-isn-t-needs-to-be-a/m-p/526658#M5123</link>
      <description>&lt;P&gt;You changed too much! The following modification of your code works for me:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
  input SeniorityDate $11.;
  date=input(SeniorityDate,anydtdte11.);
  format date date9.;
cards;
2019-JAN-12
2019-JAN-13
;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;+, after I suggested the above, I noticed in one of your other posts that you were trying to use proc sql. Here is a proc sql example for the same function:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data 'FLD EMPLOYEES QUERY 01072019'n;
  input x y z SeniorityDate $11.;
  cards;
1 2 3 2019-JAN-12
2 3 4 2019-JAN-13
;

PROC SQL;
  create table want as
    SELECT *, input(SeniorityDate, anydtdte11.) format=date9. as calculation
      FROM WORK.'FLD EMPLOYEES QUERY 01072019'n t1;
  ;
quit;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 12 Jan 2019 22:20:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/have-character-string-looks-like-a-date-but-isn-t-needs-to-be-a/m-p/526658#M5123</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2019-01-12T22:20:12Z</dc:date>
    </item>
    <item>
      <title>Re: have character string looks like a date but isn't - needs to be a date SAS ENTERPRISE</title>
      <link>https://communities.sas.com/t5/New-SAS-User/have-character-string-looks-like-a-date-but-isn-t-needs-to-be-a/m-p/526659#M5124</link>
      <description>&lt;P&gt;I cut and pasted your exact text (sorry about playing with it, clearly I'm new to it &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; ).&amp;nbsp; Here's the error that I got:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;4 PROC SQL NOEXEC;&lt;BR /&gt;5 SELECT (data have;&lt;BR /&gt;____&lt;BR /&gt;22&lt;BR /&gt;76&lt;BR /&gt;ERROR 22-322: Syntax error, expecting one of the following: !, !!, &amp;amp;, (, ), *, **, +, -, '.', /, &amp;lt;, &amp;lt;=, &amp;lt;&amp;gt;, =, &amp;gt;, &amp;gt;=, ?, AND,&lt;BR /&gt;BETWEEN, CONTAINS, EQ, EQT, GE, GET, GT, GTT, IN, IS, LE, LET, LIKE, LT, LTT, NE, NET, NOT, NOTIN, OR, ^, ^=, |, ||,&lt;BR /&gt;~, ~=.&lt;/P&gt;&lt;P&gt;ERROR 76-322: Syntax error, statement will be ignored.&lt;/P&gt;&lt;P&gt;6 input SeniorityDate $11.;&lt;BR /&gt;_____&lt;BR /&gt;180&lt;BR /&gt;ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;/P&gt;&lt;P&gt;7 date=input(SeniorityDate,anydtdte11.);&lt;BR /&gt;____&lt;BR /&gt;180&lt;BR /&gt;ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;/P&gt;&lt;P&gt;8 format date date9.;&lt;BR /&gt;WARNING: This SAS global statement is not supported in PROC SQL. It has been ignored.&lt;BR /&gt;9 cards;&lt;BR /&gt;_____&lt;BR /&gt;180&lt;BR /&gt;ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;/P&gt;&lt;P&gt;10 2019-JAN-12&lt;BR /&gt;____&lt;BR /&gt;180&lt;BR /&gt;ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;/P&gt;&lt;P&gt;11 2019-JAN-13&lt;BR /&gt;12 ;&lt;BR /&gt;12 ! ) AS CALCULATION&lt;BR /&gt;_&lt;BR /&gt;180&lt;BR /&gt;ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;/P&gt;&lt;P&gt;13 FROM WORK.'FLD EMPLOYEES QUERY 01072019'n t1;&lt;BR /&gt;14 QUIT;&lt;BR /&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;NOTE: PROCEDURE SQL used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;/P&gt;</description>
      <pubDate>Sat, 12 Jan 2019 22:11:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/have-character-string-looks-like-a-date-but-isn-t-needs-to-be-a/m-p/526659#M5124</guid>
      <dc:creator>maliksmom2000</dc:creator>
      <dc:date>2019-01-12T22:11:24Z</dc:date>
    </item>
    <item>
      <title>Re: have character string looks like a date but isn't - needs to be a date SAS ENTERPRISE</title>
      <link>https://communities.sas.com/t5/New-SAS-User/have-character-string-looks-like-a-date-but-isn-t-needs-to-be-a/m-p/526660#M5125</link>
      <description>&lt;P&gt;Then I replaced the SeniortyDate (by clicking on the table name) and removed the data have and got this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;4 PROC SQL NOEXEC;&lt;BR /&gt;5 SELECT (input t1.SeniorityDate $11.;&lt;BR /&gt;__&lt;BR /&gt;22&lt;BR /&gt;76&lt;BR /&gt;ERROR 22-322: Syntax error, expecting one of the following: !, !!, &amp;amp;, (, *, **, +, -, /, &amp;lt;, &amp;lt;=, &amp;lt;&amp;gt;, =, &amp;gt;, &amp;gt;=, ?, AND, BETWEEN,&lt;BR /&gt;CONTAINS, EQ, EQT, GE, GET, GT, GTT, LE, LET, LIKE, LT, LTT, NE, NET, OR, ^=, |, ||, ~=.&lt;/P&gt;&lt;P&gt;ERROR 76-322: Syntax error, statement will be ignored.&lt;/P&gt;&lt;P&gt;6 date=input(t1.SeniorityDate,anydtdte11.);&lt;BR /&gt;____&lt;BR /&gt;180&lt;BR /&gt;ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;/P&gt;&lt;P&gt;7 format date date9.;&lt;BR /&gt;WARNING: This SAS global statement is not supported in PROC SQL. It has been ignored.&lt;BR /&gt;8 cards;&lt;BR /&gt;_____&lt;BR /&gt;180&lt;BR /&gt;ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;/P&gt;&lt;P&gt;9 2019-JAN-12&lt;BR /&gt;____&lt;BR /&gt;180&lt;BR /&gt;ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;/P&gt;&lt;P&gt;10 2019-JAN-13&lt;BR /&gt;11 ;&lt;BR /&gt;11 ! ) AS CALCULATION&lt;BR /&gt;_&lt;BR /&gt;180&lt;BR /&gt;ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;/P&gt;&lt;P&gt;12 FROM WORK.'FLD EMPLOYEES QUERY 01072019'n t1;&lt;BR /&gt;13 QUIT;&lt;BR /&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;NOTE: PROCEDURE SQL used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;/P&gt;</description>
      <pubDate>Sat, 12 Jan 2019 22:13:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/have-character-string-looks-like-a-date-but-isn-t-needs-to-be-a/m-p/526660#M5125</guid>
      <dc:creator>maliksmom2000</dc:creator>
      <dc:date>2019-01-12T22:13:22Z</dc:date>
    </item>
    <item>
      <title>Re: have character string looks like a date but isn't - needs to be a date SAS ENTERPRISE</title>
      <link>https://communities.sas.com/t5/New-SAS-User/have-character-string-looks-like-a-date-but-isn-t-needs-to-be-a/m-p/526669#M5129</link>
      <description>&lt;P&gt;I was able to do it, thank you!&lt;/P&gt;</description>
      <pubDate>Sat, 12 Jan 2019 23:17:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/have-character-string-looks-like-a-date-but-isn-t-needs-to-be-a/m-p/526669#M5129</guid>
      <dc:creator>maliksmom2000</dc:creator>
      <dc:date>2019-01-12T23:17:24Z</dc:date>
    </item>
    <item>
      <title>Re: have character string looks like a date but isn't - needs to be a date SAS ENTERPRISE</title>
      <link>https://communities.sas.com/t5/New-SAS-User/have-character-string-looks-like-a-date-but-isn-t-needs-to-be-a/m-p/526733#M5157</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/168338"&gt;@maliksmom2000&lt;/a&gt; you posted "&lt;SPAN&gt;I was able to do it, thank you!&lt;/SPAN&gt;",&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That is great,&lt;/P&gt;
&lt;P&gt;What solution provided you the answer or was the solution that you found something different?&lt;/P&gt;
&lt;P&gt;Please close the tread by selection the solution that answered your request.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 13 Jan 2019 14:14:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/have-character-string-looks-like-a-date-but-isn-t-needs-to-be-a/m-p/526733#M5157</guid>
      <dc:creator>VDD</dc:creator>
      <dc:date>2019-01-13T14:14:23Z</dc:date>
    </item>
  </channel>
</rss>

