<?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: Comparing date in where clause in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Comparing-date-in-where-clause/m-p/207048#M51436</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you all again for your help:-)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 May 2015 13:25:51 GMT</pubDate>
    <dc:creator>SAS_NUBI2015</dc:creator>
    <dc:date>2015-05-06T13:25:51Z</dc:date>
    <item>
      <title>Comparing date in where clause</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Comparing-date-in-where-clause/m-p/207039#M51427</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello together,&lt;/P&gt;&lt;P&gt;I'm new in SAS and working with SAS EG. I try to extract data from dwh for the last two years. The part of sql-statement in where-clause looks like that:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHERE t1.V_Date_Create_At &amp;gt;= (today() -&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (substr(today(),1,2) ||'.'||substr(today(),4,2)||'.'||(substr(today(),7,4)-2));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got the error 79-322. Has anyone some clues how shall I modify this statement that runs?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Apr 2015 11:10:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Comparing-date-in-where-clause/m-p/207039#M51427</guid>
      <dc:creator>SAS_NUBI2015</dc:creator>
      <dc:date>2015-04-30T11:10:26Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing date in where clause</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Comparing-date-in-where-clause/m-p/207040#M51428</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The TODAY() function will return the current date as a number of days since 01Jan1961, see also &lt;A href="http://support.sas.com/documentation/cdl/en/lrcon/67885/HTML/default/viewer.htm#p1wj0wt2ebe2a0n1lv4lem9hdc0v.htm" title="http://support.sas.com/documentation/cdl/en/lrcon/67885/HTML/default/viewer.htm#p1wj0wt2ebe2a0n1lv4lem9hdc0v.htm"&gt;SAS(R) 9.4 Language Reference: Concepts, Fourth Edition&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAS has a function called INTNX which allows you to subtract a time interval like DAY, MONTH, YEAR an so on, by default the date returned is always the beginning of an interval to subtract 2 years and go to the same day see log below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;32&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/TD&gt;&lt;TD&gt;data _null_;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;33&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/TD&gt;&lt;TD&gt;now = today();&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;34&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/TD&gt;&lt;TD&gt;now2years = intnx("YEAR", now, -2 , "SAME");&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;35&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/TD&gt;&lt;TD&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;36&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/TD&gt;&lt;TD&gt;format now: date9.;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;37&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/TD&gt;&lt;TD&gt;putlog _all_;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;38&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/TD&gt;&lt;TD&gt;run;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now=30APR2015 now2years=30APR2013 _ERROR_=0 _N_=1&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Apr 2015 14:28:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Comparing-date-in-where-clause/m-p/207040#M51428</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2015-04-30T14:28:49Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing date in where clause</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Comparing-date-in-where-clause/m-p/207041#M51429</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Bruno,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Firstly thank your very much indeed for matched solution. May I ask you my question from another perspektive:&lt;/P&gt;&lt;P&gt;the format of date in dwh is like DD.MM.YYYY. As I understood the output-format is DDMMMYYYY. Because I usually use SAS Enterprise Guide (also only via GUI and not directly in stored process sql) I would ask you if is there any possibility to pre-format the desired date (here the date is two years ago from today) in input field? Some thing with output format DD.MM.YYYY directly in WEHRE Clause? As I researched in " SAS Date Formats and Functions" (&lt;A href="http://support.sas.com/documentation/cdl/en/etsug/60372/HTML/default/viewer.htm#intervals_toc.htm" title="http://support.sas.com/documentation/cdl/en/etsug/60372/HTML/default/viewer.htm#intervals_toc.htm"&gt;SAS/ETS(R) 9.2 User's Guide&lt;/A&gt;) I unfortunately could not find the right syntax for my output format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 May 2015 13:44:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Comparing-date-in-where-clause/m-p/207041#M51429</guid>
      <dc:creator>SAS_NUBI2015</dc:creator>
      <dc:date>2015-05-01T13:44:06Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing date in where clause</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Comparing-date-in-where-clause/m-p/207042#M51430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are asking "can I put a specific date value" in a where clause the answer is yes and the concept is called a date literal.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you were to look for dates after 10 March 2014 the syntax would be&lt;BR /&gt;where datevariable &amp;gt; '10MAR2014'd.&lt;/P&gt;&lt;P&gt;Note that the use of day, 3 letter month abbreviation then year is required and has nothing to do with the format applied to the variable. The quotes plus the letter d tell SAS to interpret the string as a date value. Similar coding allows specific time and datetime values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The date literals can be used in any place a value would be used.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 May 2015 14:48:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Comparing-date-in-where-clause/m-p/207042#M51430</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2015-05-01T14:48:15Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing date in where clause</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Comparing-date-in-where-clause/m-p/207043#M51431</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Ballardw,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your clue. &lt;/P&gt;&lt;P&gt;My question was based on yours also the recommendation of Bruno in such context:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//=========================================================&lt;/P&gt;&lt;P&gt;PROC SQL;&lt;/P&gt;&lt;P&gt;CREATE TABLE WORK.Company AS &lt;/P&gt;&lt;P&gt;SELECT t1.date, ....&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* "date format" in "SAS dwh" is like that: 01.05.2015 */&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ....&lt;/P&gt;&lt;P&gt;FROM&amp;nbsp;&amp;nbsp; tbale1 t1, table2 t2, table3 t3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHERE t1.id = t2.id&lt;/P&gt;&lt;P&gt;AND&amp;nbsp;&amp;nbsp; t2.id = t3.id&lt;/P&gt;&lt;P&gt;AND&amp;nbsp;&amp;nbsp; t1.date &amp;gt;= intnx("YEAR", today():MMDDYYP10. , -2 , "SAME");&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /*the date of last two dates*/&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;QUIT;&lt;/P&gt;&lt;P&gt;//=========================================================&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The expression "t1.date &amp;gt;= intnx("YEAR", today():MMDDYYP10. , -2 , "SAME");" shall demonstrate the dates in the last two years from the today-aspect with date-format "DD.MM.YYYY".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How is that possible to express such where-clause in SAS?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 03 May 2015 13:43:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Comparing-date-in-where-clause/m-p/207043#M51431</guid>
      <dc:creator>SAS_NUBI2015</dc:creator>
      <dc:date>2015-05-03T13:43:39Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing date in where clause</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Comparing-date-in-where-clause/m-p/207044#M51432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The format attached to a value does not change the value that is used in evaluating expressions like &amp;lt;, just how it is displayed.&lt;/P&gt;&lt;P&gt;Let us assume that your variable &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; background-color: #ffffff;"&gt;V_Date_Create_At is a date variable and &lt;/SPAN&gt;you have a user prompt that is stored into the macro variable START.&lt;/P&gt;&lt;P&gt;Since macro variables are always strings you either need to supply the value as a date literal, or in an agreed upon date format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let's assume that the user enters dates in the MM.DD.YYYY format you mentioned.&amp;nbsp; Then your WHERE clause should look something like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;WHERE t1.V_Date_Create_At &amp;gt;= input("&amp;amp;start",mmddyy10.)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;If you want all dates starting with 2 years BEFORE the date they entered then add the INTNX() function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;WHERE t1.V_Date_Create_At &amp;gt;= intnx('year',input("&amp;amp;start",mmddyy10.),-2,'same')&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However if you are saying that your variable &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; background-color: #ffffff;"&gt;V_Date_Create_At is a character string with values that look like dates in mdy order ('03.10.2014' for example) then inequality expressions like &amp;gt;= will not work as expected.&amp;nbsp; So you will need to convert the string to a date to apply the selection criteria.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 13px; background-color: #ffffff;"&gt;WHERE input(t1.V_Date_Create_At,mmddyy10.) &amp;gt;= intnx('year',input("&amp;amp;start",mmddyy10.),-2,'same')&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 03 May 2015 14:14:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Comparing-date-in-where-clause/m-p/207044#M51432</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2015-05-03T14:14:21Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing date in where clause</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Comparing-date-in-where-clause/m-p/207045#M51433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Tom,&lt;/P&gt;&lt;P&gt;Thank you. I put the expression in the &lt;SPAN style="text-decoration: underline;"&gt;filter of my query&lt;/SPAN&gt;&amp;nbsp; based on the required table in this form:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WHERE t1.V_Date_Create_At &amp;gt;= intnx('year',input(today(),MMDDYYP10.),-2,'same');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Matched results should seem like that:&lt;/P&gt;&lt;P&gt;Today:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 04.05.2015&lt;/P&gt;&lt;P&gt;Date of last 2 years I need through my query:&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 04.05.2013&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 05.05.2013&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 06.05.2013&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; etc.&lt;/P&gt;&lt;P&gt;However it caused some errors because I only compare necessary datas in the last two years beginning from today.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is wronge in this statement?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 May 2015 16:09:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Comparing-date-in-where-clause/m-p/207045#M51433</guid>
      <dc:creator>SAS_NUBI2015</dc:creator>
      <dc:date>2015-05-04T16:09:27Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing date in where clause</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Comparing-date-in-where-clause/m-p/207046#M51434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;change&lt;/P&gt;&lt;P&gt;WHERE t1.V_Date_Create_At &amp;gt;= intnx('year',input(today(),MMDDYYP10.),-2,'same');&lt;/P&gt;&lt;P&gt;to&lt;/P&gt;&lt;P&gt;WHERE t1.V_Date_Create_At &amp;gt;= intnx('year', today(), -2, 'same');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since the TODAY() function already returns the date as a number, there is not need to do any type conversion using the INPUT() function.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 May 2015 20:05:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Comparing-date-in-where-clause/m-p/207046#M51434</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2015-05-04T20:05:15Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing date in where clause</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Comparing-date-in-where-clause/m-p/207047#M51435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you still have a misunderstanding of how SAS works with date (and time) values.&lt;/P&gt;&lt;P&gt;Thoroughly read &lt;A href="http://support.sas.com/documentation/cdl/en/lrcon/62955/HTML/default/viewer.htm#a002200738.htm" title="http://support.sas.com/documentation/cdl/en/lrcon/62955/HTML/default/viewer.htm#a002200738.htm"&gt;SAS(R) 9.2 Language Reference: Concepts, Second Edition&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 May 2015 05:56:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Comparing-date-in-where-clause/m-p/207047#M51435</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2015-05-05T05:56:45Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing date in where clause</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Comparing-date-in-where-clause/m-p/207048#M51436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you all again for your help:-)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2015 13:25:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Comparing-date-in-where-clause/m-p/207048#M51436</guid>
      <dc:creator>SAS_NUBI2015</dc:creator>
      <dc:date>2015-05-06T13:25:51Z</dc:date>
    </item>
  </channel>
</rss>

