<?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: Using Max Date during ODBC Connection in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Using-Max-Date-during-ODBC-Connection/m-p/1332802#M827911</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what error you are getting?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 Jul 2017 09:31:57 GMT</pubDate>
    <dc:creator>Kushal_Chawda</dc:creator>
    <dc:date>2017-07-12T09:31:57Z</dc:date>
    <item>
      <title>Using Max Date during ODBC Connection</title>
      <link>https://community.qlik.com/t5/QlikView/Using-Max-Date-during-ODBC-Connection/m-p/1332789#M827898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;New to Qlikview and doing some testing of ODBC Connection to Filemaker.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to see if it is possible to only pull the Latest Date value for the 'OrganisationHistory' for certain IDs.&lt;/P&gt;&lt;P&gt;I've been googling all day and not getting a solid answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Currently my Script works for downloading all the data; but it is pulling about 500k lines so hopefully only getting the latest Historic record should help drop the count a bit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is also grabbing from multiple tables on Filemaker also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please see below (apologies for the naming convention - I've just taken over this Database)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ideally I would like to only get the &lt;STRONG&gt;'Latest Date from [ActionDateStart]'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODBC CONNECT TO *** (XUserId is *****, XPassword is ******);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Organisation:&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;[CompanyName],&lt;/P&gt;&lt;P&gt;[cOrgID],&lt;/P&gt;&lt;P&gt;[cSalesPersonDisplay],&lt;/P&gt;&lt;P&gt;[Log Usersales],&lt;/P&gt;&lt;P&gt;[Source],&lt;/P&gt;&lt;P&gt;[c2014 User];&lt;/P&gt;&lt;P&gt;SQL SELECT "CompanyName", "cOrgID", "cSalesPersonDisplay", "Log Usersales", "Source", "c2014 User" FROM "Organisation";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OrganisationHistory:&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;[_OrgID],&lt;/P&gt;&lt;P&gt;[Type],&lt;/P&gt;&lt;P&gt;[Complete],&lt;/P&gt;&lt;P&gt;[CreatedBy],&lt;/P&gt;&lt;P&gt;[Note],&lt;/P&gt;&lt;P&gt;[ActionDateStart];&lt;/P&gt;&lt;P&gt;SQL SELECT "_OrgID", "Type", "Complete", "CreatedBy", "ActionDateStart", "Note" FROM "Org to History" &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-Max-Date-during-ODBC-Connection/m-p/1332789#M827898</guid>
      <dc:creator>craig157</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Using Max Date during ODBC Connection</title>
      <link>https://community.qlik.com/t5/QlikView/Using-Max-Date-during-ODBC-Connection/m-p/1332790#M827899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perhaps like this:&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14992700420896860" jivemacro_uid="_14992700420896860"&gt;
&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;SQL&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SELECT "_OrgID", "Type", "Complete", "CreatedBy", "ActionDateStart", "Note"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM&amp;nbsp; "Org to History" OH1&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; INNER JOIN&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (SELECT "_OrgID", Max("ActionDateStart") as "MAX_ActionDateStart"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM "Org to History"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; GROUP BY "_OrgID") OH2&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ON&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OH1."_OrgID" = OH2."_OrgID" AND OH1."ActionDateStart" = OH2.MAX_ActionDateStart"&lt;/P&gt;



&lt;/PRE&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jul 2017 15:53:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-Max-Date-during-ODBC-Connection/m-p/1332790#M827899</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2017-07-05T15:53:59Z</dc:date>
    </item>
    <item>
      <title>Re: Using Max Date during ODBC Connection</title>
      <link>https://community.qlik.com/t5/QlikView/Using-Max-Date-during-ODBC-Connection/m-p/1332791#M827900</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Craig,&lt;/P&gt;&lt;P&gt;try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table&lt;/P&gt;&lt;P&gt;LOAD * From&amp;nbsp; TABLE;&lt;/P&gt;&lt;P&gt;Inner Join LOAD Max(ActionDateStart) as ActionDateStart&lt;/P&gt;&lt;P&gt;Resident Table;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Antonio&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jul 2017 16:02:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-Max-Date-during-ODBC-Connection/m-p/1332791#M827900</guid>
      <dc:creator>antoniotiman</dc:creator>
      <dc:date>2017-07-05T16:02:51Z</dc:date>
    </item>
    <item>
      <title>Re: Using Max Date during ODBC Connection</title>
      <link>https://community.qlik.com/t5/QlikView/Using-Max-Date-during-ODBC-Connection/m-p/1332792#M827901</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gysbert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately received the following error:&lt;/P&gt;&lt;P&gt;SQL##f - SqlState: 42000, ErrorCode: 8310, ErrorMsg: [FileMaker][FileMaker] FQL0001/(8:7): There is an error in the syntax of the query.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jul 2017 08:29:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-Max-Date-during-ODBC-Connection/m-p/1332792#M827901</guid>
      <dc:creator>craig157</dc:creator>
      <dc:date>2017-07-06T08:29:24Z</dc:date>
    </item>
    <item>
      <title>Re: Using Max Date during ODBC Connection</title>
      <link>https://community.qlik.com/t5/QlikView/Using-Max-Date-during-ODBC-Connection/m-p/1332793#M827902</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Antonio,&lt;/P&gt;&lt;P&gt;Thanks for the response but this is part of my ODBC Connection Load and this is where I am struggling to correctly write this.&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jul 2017 08:37:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-Max-Date-during-ODBC-Connection/m-p/1332793#M827902</guid>
      <dc:creator>craig157</dc:creator>
      <dc:date>2017-07-06T08:37:50Z</dc:date>
    </item>
    <item>
      <title>Re: Using Max Date during ODBC Connection</title>
      <link>https://community.qlik.com/t5/QlikView/Using-Max-Date-during-ODBC-Connection/m-p/1332794#M827903</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OrganisationHistory:&amp;nbsp;&amp;nbsp;&amp;nbsp; //doesn't change&lt;/P&gt;&lt;P&gt;.........&lt;/P&gt;&lt;P&gt;Inner Join LOAD Max(ActionDateStart) as ActionDateStart&lt;/P&gt;&lt;P&gt;Resident OrganisationHistory;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jul 2017 15:59:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-Max-Date-during-ODBC-Connection/m-p/1332794#M827903</guid>
      <dc:creator>antoniotiman</dc:creator>
      <dc:date>2017-07-06T15:59:51Z</dc:date>
    </item>
    <item>
      <title>Re: Using Max Date during ODBC Connection</title>
      <link>https://community.qlik.com/t5/QlikView/Using-Max-Date-during-ODBC-Connection/m-p/1332795#M827904</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Or like this :&lt;/P&gt;&lt;P&gt;Select Max(ActionDateStart) as MaxDate from "Org to History";&lt;/P&gt;&lt;P&gt;LET vMaxDate = Peek('MaxDate');&lt;/P&gt;&lt;P&gt;OrganisationHistory:&lt;/P&gt;&lt;P&gt;Load ........;&lt;/P&gt;&lt;P&gt;Select .................&lt;/P&gt;&lt;P&gt;from "Org to History"&lt;/P&gt;&lt;P&gt;Where ActionDateStart = $(vMaxDate);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jul 2017 16:23:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-Max-Date-during-ODBC-Connection/m-p/1332795#M827904</guid>
      <dc:creator>antoniotiman</dc:creator>
      <dc:date>2017-07-06T16:23:35Z</dc:date>
    </item>
    <item>
      <title>Re: Using Max Date during ODBC Connection</title>
      <link>https://community.qlik.com/t5/QlikView/Using-Max-Date-during-ODBC-Connection/m-p/1332796#M827905</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Antonio,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Seems to be breaking my Qlikview every time I try to debug this.&lt;/P&gt;&lt;P&gt;Can you just confirm that you mean like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select Max("ActionDateStart") as MaxDate from "Org to History";&lt;/P&gt;&lt;P&gt;Let vMaxDate = Peek("MaxDate");&lt;/P&gt;&lt;P&gt;OrganisationHistory:&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;[_OrgID],&lt;/P&gt;&lt;P&gt;[Type],&lt;/P&gt;&lt;P&gt;[Complete],&lt;/P&gt;&lt;P&gt;[CreatedBy],&lt;/P&gt;&lt;P&gt;[Note],&lt;/P&gt;&lt;P&gt;[ActionDateStart];&lt;/P&gt;&lt;P&gt;SQL SELECT "_OrgID", "Type", "Complete", "CreatedBy", "Note", "ActionDateStart" &lt;/P&gt;&lt;P&gt;FROM "Org to History" &lt;/P&gt;&lt;P&gt;WHERE ActionDateStart = $(vMaxDate);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jul 2017 13:04:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-Max-Date-during-ODBC-Connection/m-p/1332796#M827905</guid>
      <dc:creator>craig157</dc:creator>
      <dc:date>2017-07-07T13:04:09Z</dc:date>
    </item>
    <item>
      <title>Re: Using Max Date during ODBC Connection</title>
      <link>https://community.qlik.com/t5/QlikView/Using-Max-Date-during-ODBC-Connection/m-p/1332797#M827906</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;let vMaxDate = date(today()-1,'DD/MM/YYYY');&lt;/STRONG&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; color: #3d3d3d;"&gt;OrganisationHistory:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[_OrgID],&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[Type],&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[Complete],&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[CreatedBy],&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[Note],&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[ActionDateStart];&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SQL SELECT "_OrgID", "Type", "Complete", "CreatedBy", "ActionDateStart", "Note" &lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM "Org to History"&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;where to_date(to_ char(&lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;ActionDateStart,'DD/MM/YYYY'),&lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;'DD/MM/YYYY') &amp;gt; to_date('$(&lt;SPAN style="font-size: 13.3333px;"&gt;vMaxDate&lt;/SPAN&gt;)','DD/MM/YYYY');&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jul 2017 13:16:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-Max-Date-during-ODBC-Connection/m-p/1332797#M827906</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2017-07-07T13:16:05Z</dc:date>
    </item>
    <item>
      <title>Re: Using Max Date during ODBC Connection</title>
      <link>https://community.qlik.com/t5/QlikView/Using-Max-Date-during-ODBC-Connection/m-p/1332798#M827907</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes.&lt;/P&gt;&lt;P&gt;It seems correct.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jul 2017 14:45:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-Max-Date-during-ODBC-Connection/m-p/1332798#M827907</guid>
      <dc:creator>antoniotiman</dc:creator>
      <dc:date>2017-07-07T14:45:36Z</dc:date>
    </item>
    <item>
      <title>Re: Using Max Date during ODBC Connection</title>
      <link>https://community.qlik.com/t5/QlikView/Using-Max-Date-during-ODBC-Connection/m-p/1332799#M827908</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It doesn't seem to like it so must be an issue within the fields it is trying to pull.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suppose I will just have to pull through all the data and then add the expressions and create a new list box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help though&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jul 2017 09:24:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-Max-Date-during-ODBC-Connection/m-p/1332799#M827908</guid>
      <dc:creator>craig157</dc:creator>
      <dc:date>2017-07-12T09:24:29Z</dc:date>
    </item>
    <item>
      <title>Re: Using Max Date during ODBC Connection</title>
      <link>https://community.qlik.com/t5/QlikView/Using-Max-Date-during-ODBC-Connection/m-p/1332800#M827909</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you tried what I suggested?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jul 2017 09:27:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-Max-Date-during-ODBC-Connection/m-p/1332800#M827909</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2017-07-12T09:27:25Z</dc:date>
    </item>
    <item>
      <title>Re: Using Max Date during ODBC Connection</title>
      <link>https://community.qlik.com/t5/QlikView/Using-Max-Date-during-ODBC-Connection/m-p/1332801#M827910</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kushal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes I also tried your solution but another syntax error problem.&lt;/P&gt;&lt;P&gt;Not really sure where the problem is...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks though&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jul 2017 09:29:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-Max-Date-during-ODBC-Connection/m-p/1332801#M827910</guid>
      <dc:creator>craig157</dc:creator>
      <dc:date>2017-07-12T09:29:21Z</dc:date>
    </item>
    <item>
      <title>Re: Using Max Date during ODBC Connection</title>
      <link>https://community.qlik.com/t5/QlikView/Using-Max-Date-during-ODBC-Connection/m-p/1332802#M827911</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what error you are getting?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jul 2017 09:31:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-Max-Date-during-ODBC-Connection/m-p/1332802#M827911</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2017-07-12T09:31:57Z</dc:date>
    </item>
    <item>
      <title>Re: Using Max Date during ODBC Connection</title>
      <link>https://community.qlik.com/t5/QlikView/Using-Max-Date-during-ODBC-Connection/m-p/1332803#M827912</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SQL##f - SqlState: 42000, ErrorCode: 8310, ErrorMsg: [FileMaker][FileMaker] FQL0001/(5:8): There is an error in the syntax of the query.&lt;/P&gt;&lt;P&gt;SQL SELECT "_OrgID", "Type", "Complete", "CreatedBy", "ActionDateStart", "Note"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FROM "Org to History"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where to_date(to_ char(ActionDateStart,'DD/MM/YYYY'),'DD/MM/YYYY') &amp;gt; to_date('11/07/2017','DD/MM/YYYY')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jul 2017 10:32:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-Max-Date-during-ODBC-Connection/m-p/1332803#M827912</guid>
      <dc:creator>craig157</dc:creator>
      <dc:date>2017-07-12T10:32:19Z</dc:date>
    </item>
    <item>
      <title>Re: Using Max Date during ODBC Connection</title>
      <link>https://community.qlik.com/t5/QlikView/Using-Max-Date-during-ODBC-Connection/m-p/1332804#M827913</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also tried like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OrganisationHistory:&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;[_OrgID],&lt;/P&gt;&lt;P&gt;[Type],&lt;/P&gt;&lt;P&gt;[Complete],&lt;/P&gt;&lt;P&gt;[CreatedBy],&lt;/P&gt;&lt;P&gt;[Note],&lt;/P&gt;&lt;P&gt;Date(Max([ActionDateStart])) as ActionDateStart;&lt;/P&gt;&lt;P&gt;SQL SELECT "_OrgID", "Type", "Complete", "CreatedBy", "Note", "ActionDateStart" &lt;/P&gt;&lt;P&gt;FROM "Org to History";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This was sucessfully ran but now I can't see any data for "_OrgID" &amp;amp; "ActionStartDate"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hopefully I must be missing something; should I be grouping these? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jul 2017 15:29:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-Max-Date-during-ODBC-Connection/m-p/1332804#M827913</guid>
      <dc:creator>craig157</dc:creator>
      <dc:date>2017-07-12T15:29:58Z</dc:date>
    </item>
    <item>
      <title>Re: Using Max Date during ODBC Connection</title>
      <link>https://community.qlik.com/t5/QlikView/Using-Max-Date-during-ODBC-Connection/m-p/1332805#M827914</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tried this method again but it really doesn't like:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;to_date(to_ char(&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jul 2017 15:39:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-Max-Date-during-ODBC-Connection/m-p/1332805#M827914</guid>
      <dc:creator>craig157</dc:creator>
      <dc:date>2017-07-12T15:39:16Z</dc:date>
    </item>
  </channel>
</rss>

