<?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: Maximum Date in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Maximum-Date/m-p/1861#M792590</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the help, an apology the answer is correct&lt;/P&gt;&lt;P&gt;greetings&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Jan 2018 17:38:55 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-01-17T17:38:55Z</dc:date>
    <item>
      <title>Maximum Date</title>
      <link>https://community.qlik.com/t5/QlikView/Maximum-Date/m-p/1853#M792582</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good afternoon&lt;/P&gt;&lt;P&gt;I would like to help me I have a problem I want to know the field that I have marked in yellow which is the maximum date field marked with red in theory my result is the one found in blue &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All this I want to do from the script but I have no idea what the function I should use to do so I hope you can help me thank you very much&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Annex the Excel with which I am doing my tests so attached an image in which I put a small description of what I need&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;greetings&lt;/P&gt;&lt;P&gt;Luis Espinoza &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Example.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/190268_Example.PNG" style="width: 620px; height: 366px;" /&gt;&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/Maximum-Date/m-p/1853#M792582</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Maximum Date</title>
      <link>https://community.qlik.com/t5/QlikView/Maximum-Date/m-p/1854#M792583</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe something like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD LEAD_ID,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Max( EXECUTION_DATE) as MaxDate&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;FROM ....&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;GROUP BY LEAD_ID;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jan 2018 23:00:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Maximum-Date/m-p/1854#M792583</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2018-01-16T23:00:14Z</dc:date>
    </item>
    <item>
      <title>Re: Maximum Date</title>
      <link>https://community.qlik.com/t5/QlikView/Maximum-Date/m-p/1855#M792584</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is that you are expecting in Qlikview and how did you come to this output that you want 13/09/2017 date?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you looking for this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/190274_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;IF YES, then use like below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pureba:&lt;/P&gt;&lt;P&gt;LOAD CAMPAIGNCODE_CAMP, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LEAD_ID, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FECHA_EJECUCION, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FECHA_RESPUESTA, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RESPONSECODE2, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DESCRIPTION, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DESCRIPCION, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CANAL, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; EXECUTION_DATE&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;Prueba.xls&lt;/P&gt;&lt;P&gt;(biff, embedded labels, table is Hoja1$);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LEFT JOIN(Pureba)&lt;/P&gt;&lt;P&gt;Load CAMPAIGNCODE_CAMP, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LEAD_ID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date(Max(EXECUTION_DATE), 'DD/MM/YYYY hh:mm:ss') AS MaxDate&lt;/P&gt;&lt;P&gt;Resident Pureba&lt;/P&gt;&lt;P&gt;Group By CAMPAIGNCODE_CAMP, LEAD_ID;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jan 2018 23:07:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Maximum-Date/m-p/1855#M792584</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2018-01-16T23:07:08Z</dc:date>
    </item>
    <item>
      <title>Re: Maximum Date</title>
      <link>https://community.qlik.com/t5/QlikView/Maximum-Date/m-p/1856#M792585</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want a final date per day regardless of the field LEAD_ID for example the LEAD_ID has a number of dates (many days) I want every day me the maximum date I hope I can explain&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jan 2018 23:23:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Maximum-Date/m-p/1856#M792585</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-01-16T23:23:14Z</dc:date>
    </item>
    <item>
      <title>Re: Maximum Date</title>
      <link>https://community.qlik.com/t5/QlikView/Maximum-Date/m-p/1857#M792586</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you try the code i pasted in my earlier reply?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jan 2018 23:26:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Maximum-Date/m-p/1857#M792586</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2018-01-16T23:26:18Z</dc:date>
    </item>
    <item>
      <title>Re: Maximum Date</title>
      <link>https://community.qlik.com/t5/QlikView/Maximum-Date/m-p/1858#M792587</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you try but give me the maximum date of the LED_ID and I want the maximum date per day of the LED_ID&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jan 2018 23:38:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Maximum-Date/m-p/1858#M792587</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-01-16T23:38:08Z</dc:date>
    </item>
    <item>
      <title>Re: Maximum Date</title>
      <link>https://community.qlik.com/t5/QlikView/Maximum-Date/m-p/1859#M792588</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did not get you can you elaborate and send some screenshots of what your expected output is?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jan 2018 23:40:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Maximum-Date/m-p/1859#M792588</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2018-01-16T23:40:32Z</dc:date>
    </item>
    <item>
      <title>Re: Maximum Date</title>
      <link>https://community.qlik.com/t5/QlikView/Maximum-Date/m-p/1860#M792589</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then maybe &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;LOAD LEAD_ID,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dayname(EXECUTION_DATE) as Date,&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Max( EXECUTION_DATE) as MaxDate&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;FROM ....&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;GROUP BY LEAD_ID, Dayname(EXECUTION_DATE);&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jan 2018 23:48:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Maximum-Date/m-p/1860#M792589</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2018-01-16T23:48:59Z</dc:date>
    </item>
    <item>
      <title>Re: Maximum Date</title>
      <link>https://community.qlik.com/t5/QlikView/Maximum-Date/m-p/1861#M792590</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the help, an apology the answer is correct&lt;/P&gt;&lt;P&gt;greetings&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jan 2018 17:38:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Maximum-Date/m-p/1861#M792590</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-01-17T17:38:55Z</dc:date>
    </item>
  </channel>
</rss>

