<?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: Help selecting dates after a certain date in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Help-selecting-dates-after-a-certain-date/m-p/563048#M693677</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you should not use timestamp.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 07 Aug 2013 09:13:31 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-08-07T09:13:31Z</dc:date>
    <item>
      <title>Help selecting dates after a certain date</title>
      <link>https://community.qlik.com/t5/QlikView/Help-selecting-dates-after-a-certain-date/m-p/563037#M693666</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG __jive_id="45064" alt="error.jpg" class="jive-image-thumbnail jive-image" height="364" src="https://community.qlik.com/legacyfs/online/45064_error.jpg" style="height: 364px; width: 682.9446254071661px;" width="683" /&gt;&lt;/P&gt;&lt;P&gt;Sorry if this is simple... I'm reading my data from a pervasive sql database, everything works perfectly, but when I &lt;BR /&gt;add load "DDate" it always crashed with OLE DB multiple step operation error, I'm assuming it's because the DDate has too many&lt;/P&gt;&lt;P&gt;transactions (it's years worth of invoices).&amp;nbsp;&amp;nbsp; How can I make DDate only load transactions after a certain date, E.g.&amp;nbsp; 01/01/2013&amp;nbsp;&amp;nbsp; ? &lt;BR /&gt;Thank you in advance &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Aug 2013 07:48:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-selecting-dates-after-a-certain-date/m-p/563037#M693666</guid>
      <dc:creator />
      <dc:date>2013-08-07T07:48:17Z</dc:date>
    </item>
    <item>
      <title>Re: Help selecting dates after a certain date</title>
      <link>https://community.qlik.com/t5/QlikView/Help-selecting-dates-after-a-certain-date/m-p/563038#M693667</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Put a where clause in your SQL statement like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL Select .....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From ....... Where DDate&amp;gt;= '01/01/2013' ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: this &lt;STRONG&gt;'01/01/2013'&lt;/STRONG&gt;&amp;nbsp; part of your code has to have exactly the same format of date as in your SQL database.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Aug 2013 07:55:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-selecting-dates-after-a-certain-date/m-p/563038#M693667</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2013-08-07T07:55:06Z</dc:date>
    </item>
    <item>
      <title>Re: Help selecting dates after a certain date</title>
      <link>https://community.qlik.com/t5/QlikView/Help-selecting-dates-after-a-certain-date/m-p/563039#M693668</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Load CustomerCode,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ItemCode,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DDate,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Qty,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SalesmanCode&amp;nbsp; where DDate&amp;gt;'01/01/2013';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SQL Select CustomerCode,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ItemCode,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DDate,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Qty,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SalesmanCode&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;From HistoryLines;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;**************&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;make sure date DDate in the format of your this date &lt;/STRONG&gt;&lt;STRONG&gt;01/01/2013,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;if not in right format--&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;then use-&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;WHERE Date(DDate,'DD/MM/YYYY')&amp;gt;'&lt;/STRONG&gt;&lt;STRONG&gt;01/01/2013&lt;/STRONG&gt;&lt;STRONG&gt;'&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Aug 2013 07:56:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-selecting-dates-after-a-certain-date/m-p/563039#M693668</guid>
      <dc:creator />
      <dc:date>2013-08-07T07:56:58Z</dc:date>
    </item>
    <item>
      <title>Re: Help selecting dates after a certain date</title>
      <link>https://community.qlik.com/t5/QlikView/Help-selecting-dates-after-a-certain-date/m-p/563040#M693669</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OR TRY THIS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Load CustomerCode,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ItemCode,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DDate,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Qty,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SalesmanCode&amp;nbsp; ;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SQL Select CustomerCode,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ItemCode,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DDate,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Qty,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SalesmanCode&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;From HistoryLines&amp;nbsp; &lt;/STRONG&gt;&lt;STRONG&gt;where DDate&amp;gt;'01/01/2013'&lt;/STRONG&gt;&lt;STRONG&gt;;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Aug 2013 07:59:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-selecting-dates-after-a-certain-date/m-p/563040#M693669</guid>
      <dc:creator />
      <dc:date>2013-08-07T07:59:10Z</dc:date>
    </item>
    <item>
      <title>Re: Help selecting dates after a certain date</title>
      <link>https://community.qlik.com/t5/QlikView/Help-selecting-dates-after-a-certain-date/m-p/563041#M693670</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wow, you guys are amazing, thank you for the quick response. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried both, the top one still gives me the exact same problem (with where ddate after load) &lt;BR /&gt;this is a picture of the error and the order of DDate so you can see it &lt;A class="loading" href="http://i.imgur.com/j8vHLOx.jpg"&gt;http://i.imgur.com/j8vHLOx.jpg&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with where ddate after select,&amp;nbsp; it fails and says multiple errors occured.&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I appreciate your help so much &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Aug 2013 08:09:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-selecting-dates-after-a-certain-date/m-p/563041#M693670</guid>
      <dc:creator />
      <dc:date>2013-08-07T08:09:20Z</dc:date>
    </item>
    <item>
      <title>Re: Help selecting dates after a certain date</title>
      <link>https://community.qlik.com/t5/QlikView/Help-selecting-dates-after-a-certain-date/m-p/563042#M693671</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The where clause has to be there in SQL Select. I can't see your error message, can you post it here directly using the camera icon&amp;lt;insert image&amp;gt;?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Aug 2013 08:25:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-selecting-dates-after-a-certain-date/m-p/563042#M693671</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2013-08-07T08:25:14Z</dc:date>
    </item>
    <item>
      <title>Re: Help selecting dates after a certain date</title>
      <link>https://community.qlik.com/t5/QlikView/Help-selecting-dates-after-a-certain-date/m-p/563043#M693672</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG __jive_id="45065" class="jive-image-thumbnail jive-image" height="171" onclick="" alt="Untitleder.jpg" src="https://community.qlik.com/legacyfs/online/45065_Untitleder.jpg" style="height: 171px; width: 635.9504132231405px;" width="636" /&gt;&lt;/P&gt;&lt;P&gt;There's the error with it in LOAD,&amp;nbsp; the bottom left is the layout of DDate.&lt;BR /&gt;Below is the error with it in SELECT&lt;IMG __jive_id="45066" class="jive-image-thumbnail jive-image" height="312" onclick="" alt="in select.jpg" src="/legacyfs/online/45066_in select.jpg" style="height: 312px; width: 632.4324324324325px;" width="632" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Aug 2013 08:30:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-selecting-dates-after-a-certain-date/m-p/563043#M693672</guid>
      <dc:creator />
      <dc:date>2013-08-07T08:30:34Z</dc:date>
    </item>
    <item>
      <title>Re: Help selecting dates after a certain date</title>
      <link>https://community.qlik.com/t5/QlikView/Help-selecting-dates-after-a-certain-date/m-p/563044#M693673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please check the DDate date format in the SQL database (as I mentioned earlier). Say it is in timestamp format like&amp;nbsp; - 'dd/mm/yyyy hh:mm:ss', then you have to put the where condition date like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where DDate &amp;gt; '01/08/2013 00:00:00'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Aug 2013 08:38:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-selecting-dates-after-a-certain-date/m-p/563044#M693673</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2013-08-07T08:38:22Z</dc:date>
    </item>
    <item>
      <title>Re: Help selecting dates after a certain date</title>
      <link>https://community.qlik.com/t5/QlikView/Help-selecting-dates-after-a-certain-date/m-p/563045#M693674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;also remember ; at the end&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Aug 2013 08:43:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-selecting-dates-after-a-certain-date/m-p/563045#M693674</guid>
      <dc:creator />
      <dc:date>2013-08-07T08:43:15Z</dc:date>
    </item>
    <item>
      <title>Re: Help selecting dates after a certain date</title>
      <link>https://community.qlik.com/t5/QlikView/Help-selecting-dates-after-a-certain-date/m-p/563046#M693675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is ; at the end&lt;/P&gt;&lt;P&gt;tres, I am confused by your post... I have put a picture in my last post and at the bottom right you can see the DDate column of the table with its format..&amp;nbsp;&amp;nbsp;&amp;nbsp; It says &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"ErrorSource: Pervasive.SQL V9 OLE DB Provider, ErrorMsg: One or more errors occurred during processing of command.&lt;/P&gt;&lt;P&gt;SQL Select CustomerCode,&lt;/P&gt;&lt;P&gt;ItemCode,&lt;/P&gt;&lt;P&gt;DDate,&lt;/P&gt;&lt;P&gt;Qty,&lt;/P&gt;&lt;P&gt;SalesmanCode&lt;/P&gt;&lt;P&gt;From HistoryLines Where DDate &amp;gt; '01/08/2013 00:00:00' " &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Aug 2013 08:54:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-selecting-dates-after-a-certain-date/m-p/563046#M693675</guid>
      <dc:creator />
      <dc:date>2013-08-07T08:54:17Z</dc:date>
    </item>
    <item>
      <title>Re: Help selecting dates after a certain date</title>
      <link>https://community.qlik.com/t5/QlikView/Help-selecting-dates-after-a-certain-date/m-p/563047#M693676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, let's try it step by step to find the root cause.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See if the below statement fetches data successfully:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQl Select&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; CustomerCode,&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; ItemCode,&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; DDate&lt;/P&gt;&lt;P&gt;From HistoryLines Where CustomerCode=&amp;lt;give once code&amp;gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does it work? If yes, then connection is ok; statment has no problem, we can try for step2 then.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Aug 2013 09:11:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-selecting-dates-after-a-certain-date/m-p/563047#M693676</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2013-08-07T09:11:45Z</dc:date>
    </item>
    <item>
      <title>Re: Help selecting dates after a certain date</title>
      <link>https://community.qlik.com/t5/QlikView/Help-selecting-dates-after-a-certain-date/m-p/563048#M693677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you should not use timestamp.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Aug 2013 09:13:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-selecting-dates-after-a-certain-date/m-p/563048#M693677</guid>
      <dc:creator />
      <dc:date>2013-08-07T09:13:31Z</dc:date>
    </item>
    <item>
      <title>Re: Help selecting dates after a certain date</title>
      <link>https://community.qlik.com/t5/QlikView/Help-selecting-dates-after-a-certain-date/m-p/563049#M693678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry about the late reply, Im here now.&amp;nbsp; It threw the same error, Tres qv&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ErrorSource: Pervasive.SQL V9 OLE DB Provider, ErrorMsg: One or more errors occurred during processing of command.&lt;/P&gt;&lt;P&gt;SQL Select&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;CustomerCode,&lt;/P&gt;&lt;P&gt;ItemCode,&lt;/P&gt;&lt;P&gt;DDate&lt;/P&gt;&lt;P&gt;From HistoryLines Where CustomerCode=&amp;lt;give once code&amp;gt;"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Aug 2013 11:08:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-selecting-dates-after-a-certain-date/m-p/563049#M693678</guid>
      <dc:creator />
      <dc:date>2013-08-07T11:08:02Z</dc:date>
    </item>
    <item>
      <title>Re: Help selecting dates after a certain date</title>
      <link>https://community.qlik.com/t5/QlikView/Help-selecting-dates-after-a-certain-date/m-p/563050#M693679</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Any help ? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Aug 2013 07:04:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-selecting-dates-after-a-certain-date/m-p/563050#M693679</guid>
      <dc:creator />
      <dc:date>2013-08-08T07:04:48Z</dc:date>
    </item>
    <item>
      <title>Re: Help selecting dates after a certain date</title>
      <link>https://community.qlik.com/t5/QlikView/Help-selecting-dates-after-a-certain-date/m-p/563051#M693680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can u share application?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Aug 2013 07:06:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-selecting-dates-after-a-certain-date/m-p/563051#M693680</guid>
      <dc:creator />
      <dc:date>2013-08-08T07:06:35Z</dc:date>
    </item>
    <item>
      <title>Re: Help selecting dates after a certain date</title>
      <link>https://community.qlik.com/t5/QlikView/Help-selecting-dates-after-a-certain-date/m-p/563052#M693681</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;'&amp;lt;give on&lt;STRONG style="text-decoration: line-through;"&gt;c&lt;/STRONG&gt;e code&amp;gt;', i meant a CustomerCode which is there in the database. Like CustomerCode='101' .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Aug 2013 07:11:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-selecting-dates-after-a-certain-date/m-p/563052#M693681</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2013-08-08T07:11:41Z</dc:date>
    </item>
    <item>
      <title>Re: Help selecting dates after a certain date</title>
      <link>https://community.qlik.com/t5/QlikView/Help-selecting-dates-after-a-certain-date/m-p/563053#M693682</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp; &lt;A _jive_internal="true" class="jiveTT-hover-user jive-username-link" href="https://community.qlik.com/people/darrenrsa" id="jive-13249229325335177655422" style="background-color: #ffffff; font-size: 12px; color: #007fc0; font-weight: bold; font-family: Arial; text-align: center;"&gt;darrenrsa&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load CustomerCode, ItemCode,Qty, Date(DDate,'DD/MM/YYYY') as DDate, SalesmanCode&amp;nbsp; where DDate &amp;gt;= Date('01/08/2013','DD/MM/YYYY');&lt;/P&gt;&lt;P&gt;SQL Select CustomerCode, ItemCode, DDate, Qty, SalesmanCode From HistoryLines;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Aug 2013 07:16:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-selecting-dates-after-a-certain-date/m-p/563053#M693682</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2013-08-08T07:16:28Z</dc:date>
    </item>
    <item>
      <title>Re: Help selecting dates after a certain date</title>
      <link>https://community.qlik.com/t5/QlikView/Help-selecting-dates-after-a-certain-date/m-p/563054#M693683</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Mayil,&amp;nbsp; It didn't wok, it gave the error&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ErrorSource: Pervasive.SQL V9 OLE DB Provider, ErrorMsg: Multiple-step OLE DB operation generated errors. Check each OLE DB status value, if available. No work was done.&lt;/P&gt;&lt;P&gt;SQL Select&lt;/P&gt;&lt;P&gt;CustomerCode,&lt;/P&gt;&lt;P&gt;ItemCode,&lt;/P&gt;&lt;P&gt;DDate,&lt;/P&gt;&lt;P&gt;Qty,&lt;/P&gt;&lt;P&gt;SalesmanCode&lt;/P&gt;&lt;P&gt; From HistoryLines&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's only if a put DDate in, if I remove it, everything else loads perfectly and is viewable etc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thomas, I can share the application, but the database is too big to share and I fear you cant do anything with the application without the database ? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Aug 2013 08:38:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-selecting-dates-after-a-certain-date/m-p/563054#M693683</guid>
      <dc:creator />
      <dc:date>2013-08-08T08:38:23Z</dc:date>
    </item>
    <item>
      <title>Re: Help selecting dates after a certain date</title>
      <link>https://community.qlik.com/t5/QlikView/Help-selecting-dates-after-a-certain-date/m-p/563055#M693684</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just need a sample! But try anyway &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Aug 2013 08:39:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-selecting-dates-after-a-certain-date/m-p/563055#M693684</guid>
      <dc:creator />
      <dc:date>2013-08-08T08:39:59Z</dc:date>
    </item>
    <item>
      <title>Re: Help selecting dates after a certain date</title>
      <link>https://community.qlik.com/t5/QlikView/Help-selecting-dates-after-a-certain-date/m-p/563056#M693685</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Where shall I share it ? Sorry for the begginer question &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Aug 2013 09:20:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-selecting-dates-after-a-certain-date/m-p/563056#M693685</guid>
      <dc:creator />
      <dc:date>2013-08-08T09:20:08Z</dc:date>
    </item>
  </channel>
</rss>

