<?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: Look up maximum date in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Look-up-maximum-date/m-p/1344580#M29744</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;Max({&amp;lt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;TRANSACTION_ID &lt;/SPAN&gt;={"=len(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;TRANSACTION_ID &lt;/SPAN&gt;)&amp;gt;0"}&amp;gt;}TOTAL &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;TRAN_DATE&lt;/SPAN&gt;)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 15 May 2017 11:48:14 GMT</pubDate>
    <dc:creator>vinieme12</dc:creator>
    <dc:date>2017-05-15T11:48:14Z</dc:date>
    <item>
      <title>Look up maximum date</title>
      <link>https://community.qlik.com/t5/App-Development/Look-up-maximum-date/m-p/1344578#M29742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a transaction table where each transaction has a date: TRAN_DATE&lt;/P&gt;&lt;P&gt;This table is linked to a date look up table which gives me our company time period that a date belongs to; this table has fields TRAN_DATE and TIME_PERIOD&lt;/P&gt;&lt;P&gt;The lookup table includes dates into the future so when I use the expression max(TRAN_DATE) I get the latest date in the look up table. I really want the maximum date in the transaction table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any pointers?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 May 2017 11:07:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Look-up-maximum-date/m-p/1344578#M29742</guid>
      <dc:creator />
      <dc:date>2017-05-15T11:07:25Z</dc:date>
    </item>
    <item>
      <title>Re: Look up maximum date</title>
      <link>https://community.qlik.com/t5/App-Development/Look-up-maximum-date/m-p/1344579#M29743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I really want something like Max(TRAN_DATE where the TRANSACTION_ID is NOT NULL)!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 May 2017 11:08:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Look-up-maximum-date/m-p/1344579#M29743</guid>
      <dc:creator />
      <dc:date>2017-05-15T11:08:16Z</dc:date>
    </item>
    <item>
      <title>Re: Look up maximum date</title>
      <link>https://community.qlik.com/t5/App-Development/Look-up-maximum-date/m-p/1344580#M29744</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;Max({&amp;lt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;TRANSACTION_ID &lt;/SPAN&gt;={"=len(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;TRANSACTION_ID &lt;/SPAN&gt;)&amp;gt;0"}&amp;gt;}TOTAL &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;TRAN_DATE&lt;/SPAN&gt;)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 May 2017 11:48:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Look-up-maximum-date/m-p/1344580#M29744</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2017-05-15T11:48:14Z</dc:date>
    </item>
    <item>
      <title>Re: Look up maximum date</title>
      <link>https://community.qlik.com/t5/App-Development/Look-up-maximum-date/m-p/1344581#M29745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;With If statement:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;=Max(If(Len(&lt;/EM&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;EM&gt;TRANSACTION_ID) &amp;gt; 0, &lt;/EM&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;EM&gt;TRAN_DATE ))&lt;/EM&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; 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-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Set expresssion:&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;EM&gt;=Max({&amp;lt;&lt;/EM&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;EM&gt;TRANSACTION_ID = {'*'}&amp;gt;} TRAN_DATE)&lt;/EM&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 May 2017 11:48:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Look-up-maximum-date/m-p/1344581#M29745</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2017-05-15T11:48:16Z</dc:date>
    </item>
  </channel>
</rss>

