<?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: How to get correct date in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-get-correct-date/m-p/558902#M1120302</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks and earlier I used #09/01/2012# it worked fine . Now I just confused how to give 29/01/2012.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please let me know the format which I have to use whether DD/MM/YYYY&amp;nbsp; or MM/DD/YYYY&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 Jan 2014 15:36:44 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-01-23T15:36:44Z</dc:date>
    <item>
      <title>How to get correct date</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-correct-date/m-p/558898#M1120298</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;BR /&gt;When I am loading data from ODBC drive i,e from access database it is showing data type mismatch error&lt;/P&gt;&lt;P&gt; &lt;BR /&gt;the query is&lt;/P&gt;&lt;P&gt; &lt;BR /&gt;Load a,b,c&lt;/P&gt;&lt;P&gt;select SQL * from Table where Date&amp;gt;'29/01/2012';&lt;/P&gt;&lt;P&gt; &lt;BR /&gt;Can anyone help me as I tried in many date formats but nothing works for me please help me as this is urgent now please.&lt;/P&gt;&lt;P&gt; &lt;BR /&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jan 2014 15:08:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-correct-date/m-p/558898#M1120298</guid>
      <dc:creator />
      <dc:date>2014-01-23T15:08:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to get correct date</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-correct-date/m-p/558899#M1120299</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;will it work if I use Date&amp;gt;#29/01/2012#&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jan 2014 15:19:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-correct-date/m-p/558899#M1120299</guid>
      <dc:creator />
      <dc:date>2014-01-23T15:19:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to get correct date</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-correct-date/m-p/558900#M1120300</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where Date &amp;gt; Date('&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;29/01/2012&lt;/SPAN&gt;','MM/DD/YYYY')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jan 2014 15:26:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-correct-date/m-p/558900#M1120300</guid>
      <dc:creator />
      <dc:date>2014-01-23T15:26:23Z</dc:date>
    </item>
    <item>
      <title>Re: Re: How to get correct date</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-correct-date/m-p/558901#M1120301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is a common error with dates, you have to use the same format that your database field uses, but I usually do something like the next:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro _jivemacro_uid_13904908321871568 jive_macro_code" jivemacro_uid="_13904908321871568" modifiedtitle="true"&gt;
&lt;P&gt;// I create a variable with de date&lt;/P&gt;
&lt;P&gt;LET vLimitDate = MakeDate(2012,01,29);&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;//I use the variable in the SQL query&lt;/P&gt;
&lt;P&gt;WHERE TRUNC ( YourDatabaseFieldName ) &amp;gt; TODATE( '$(vLimitDate)','DD/MM/YYYY')&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Of course, you have to use the correct functions for your database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jan 2014 15:32:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-correct-date/m-p/558901#M1120301</guid>
      <dc:creator>Carlos_Reyes</dc:creator>
      <dc:date>2014-01-23T15:32:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to get correct date</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-correct-date/m-p/558902#M1120302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks and earlier I used #09/01/2012# it worked fine . Now I just confused how to give 29/01/2012.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please let me know the format which I have to use whether DD/MM/YYYY&amp;nbsp; or MM/DD/YYYY&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jan 2014 15:36:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-correct-date/m-p/558902#M1120302</guid>
      <dc:creator />
      <dc:date>2014-01-23T15:36:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to get correct date</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-correct-date/m-p/558903#M1120303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Pull Date into the QlikView script and use where there.&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load a,b,c,Date&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Where Date&amp;gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;'29/01/2012';&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;select SQL * from Table;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Drop Field Date;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jan 2014 15:44:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-correct-date/m-p/558903#M1120303</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-23T15:44:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to get correct date</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-correct-date/m-p/558904#M1120304</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can use any format&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jan 2014 15:46:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-correct-date/m-p/558904#M1120304</guid>
      <dc:creator />
      <dc:date>2014-01-23T15:46:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to get correct date</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-correct-date/m-p/558905#M1120305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried it but it is not working as I have the source from access database.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jan 2014 15:46:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-correct-date/m-p/558905#M1120305</guid>
      <dc:creator />
      <dc:date>2014-01-23T15:46:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to get correct date</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-correct-date/m-p/558906#M1120306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Putting the where clause on the QlikView side of the query is inefficient as all data is being accessed in the SQL query and it is filtered afterwards.&lt;/P&gt;&lt;P&gt;Also using select * means that all data fields are being accessed and will also degrade performance when only a few fields are used by QlikView.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Filter the data in the SQL query and only load the required fields from SQL will improve load performance, often giving significant improvements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards date formats, using 'YYYY-MM-DD' often solves these issues as there is no ambiguity in the sequence of days and months.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load a,b,c&lt;/P&gt;&lt;P&gt;select SQL * from Table where Date &amp;gt; '2012-01-29'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jan 2014 15:53:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-correct-date/m-p/558906#M1120306</guid>
      <dc:creator>Colin-Albert</dc:creator>
      <dc:date>2014-01-23T15:53:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to get correct date</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-correct-date/m-p/558907#M1120307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the advise Colin.&amp;nbsp; You seem to be pretty knowledgeable about this topic. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible that a field in SQL could have both Date and DateTime?&amp;nbsp; I have a case when I put the where statment within the SQL query I do not get the proper result vs when I put the where on the QlikView side.&amp;nbsp; I suspect it has something to do with the way QlikView handles dates but I'm not entirely sure. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jan 2014 17:43:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-correct-date/m-p/558907#M1120307</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-23T17:43:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to get correct date</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-correct-date/m-p/558908#M1120308</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SQL Databases (Oracle, Microsoft, etc) usually uses 'YYYY-MM-DD' format. A column can be Date OR DateTime.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dates and datetimes into QV are stored as decimals numbers properly formatted&lt;/P&gt;&lt;P&gt;23/01/2014 15:47:22 = 41662,658032407&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jan 2014 17:47:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-correct-date/m-p/558908#M1120308</guid>
      <dc:creator>Clever_Anjos</dc:creator>
      <dc:date>2014-01-23T17:47:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to get correct date</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-correct-date/m-p/558909#M1120309</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So on the SQL side I should use Where &amp;gt;= '2010-04-01';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of Where &amp;gt;= '04-01-2010';&amp;nbsp; and I should get the proper result?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I also assume QlikView is working because it is storing date as a # so formatting is not an issue?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jan 2014 17:54:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-correct-date/m-p/558909#M1120309</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-23T17:54:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to get correct date</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-correct-date/m-p/558910#M1120310</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;select SQL * from Table where Date &amp;gt; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;'2010-04-01' should work on any database.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;I´d rather use conversion from specific database&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Eg: Oracle&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;select SQL * from Table where Date &amp;gt; to_date(&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;'2010-04-01','YYYY-MM-DD') &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;or&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;select SQL * from Table where Date &amp;gt; to_date(&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;'04-01-2010','MM-DD-YYYY') &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;QlikView store dates(and timestamps) as decimal numbers. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Make a simple test:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Add a text box to any application and add =now() as expression, check what it returns&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;then change to = num(now()) and check again&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jan 2014 17:59:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-correct-date/m-p/558910#M1120310</guid>
      <dc:creator>Clever_Anjos</dc:creator>
      <dc:date>2014-01-23T17:59:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to get correct date</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-correct-date/m-p/558911#M1120311</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dates are stored by default as a datetime value in a dual field with the date part as the integer and the fraction as the time component, along with a text representation of the date.&lt;/P&gt;&lt;P&gt;It is more efficient in QlikView to separate these values into two fields, as storing dates as integers and time separately can significantly reduce the number of unique data values. See below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use &lt;STRONG&gt;date(floor(datetime_field)) as date_value&lt;/STRONG&gt; to store just the date component&lt;/P&gt;&lt;P&gt;and &lt;STRONG&gt;time(frac(datetime_field))&lt;/STRONG&gt; &lt;STRONG&gt;as time_value &lt;/STRONG&gt;to store just the time component&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Displaying a date or time field using&amp;nbsp; the formatting functions e.g. &lt;STRONG&gt;date(date_value, 'YYYY-MMM') &lt;/STRONG&gt; only changes the text portion of the dual data value it does not change the underlying numeric portion, so each separate date or datetime value still exists. This can cause QlikView to display the same text value multiple times and not aggregate all the values to a single column, if you are not aware of how the dual values are affected.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jan 2014 18:09:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-correct-date/m-p/558911#M1120311</guid>
      <dc:creator>Colin-Albert</dc:creator>
      <dc:date>2014-01-23T18:09:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to get correct date</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-correct-date/m-p/558912#M1120312</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;First thing is to see if Date field in SQL environment is a date, a timestamp, or a string. Do you see it as '29/01/2012' in base? Then check the Date format of Qlikview, to see if it's the same. What works for me:&lt;/P&gt;&lt;P&gt;If Date is a normal date: should work: Where Date&amp;gt;to_date('29/01/2012','DD/MM/YYYY')&lt;/P&gt;&lt;P&gt;If it's a timestamp, you need: Where trunc(Date)&amp;gt;to_date('29/01/2012','DD/MM/YYYY')&lt;/P&gt;&lt;P&gt;If it's a string: Where to_date(Date,'DD/MM/YYYY')&amp;gt;to_date('29/01/2012','DD/MM/YYYY')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope I fell on the right one &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/wink.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jan 2014 18:50:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-correct-date/m-p/558912#M1120312</guid>
      <dc:creator />
      <dc:date>2014-01-23T18:50:00Z</dc:date>
    </item>
  </channel>
</rss>

