<?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: Max date in each of the file in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Max-date-in-each-of-the-file/m-p/109666#M17129</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Arvind.&lt;/P&gt;&lt;P&gt;Bur the requirement is what if we are dealing with multiple file if in case&lt;/P&gt;&lt;P&gt;i hv 10 files i vl have to do the same for 10 files.&lt;/P&gt;&lt;P&gt;I am looking for other alternatives.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 22 Aug 2018 11:53:56 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-08-22T11:53:56Z</dc:date>
    <item>
      <title>Max date in each of the file</title>
      <link>https://community.qlik.com/t5/QlikView/Max-date-in-each-of-the-file/m-p/109662#M17125</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have multiple excel files.&lt;/P&gt;&lt;P&gt;My requirement is to filter only for the records where the DOJ is max (DOJ column) in each of the excel files&lt;/P&gt;&lt;P&gt;I could easily do this taking one excel file , &lt;SPAN style="font-size: 13.3333px;"&gt;at a time &lt;/SPAN&gt;creating variable&amp;nbsp; finding max DOJ and&amp;nbsp; like wise using&amp;nbsp; same code for other excel separately&amp;nbsp; and concatenating the final result.&lt;/P&gt;&lt;P&gt;In attached 3 sample data &lt;/P&gt;&lt;P&gt;1. 201801 - Here max DOJ (Month-Year) is Jan-18 so I want only 2 records I want &lt;/P&gt;&lt;P&gt;2. 201802- &lt;SPAN style="font-size: 13.3333px;"&gt;Here max DOJ (Month-Year) is Feb-18 so I want only 3 records&amp;nbsp; I want&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;3. 201803- Here max DOJ (Month-Year) is Mar-18 so I want only 5 records I want&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;In final table would have total 10 r (5+2+3) records from the above 3 files.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;So I am looking for a case&amp;nbsp; how to achieve the result&amp;nbsp; using iterative/loop steps to run on each of the file&amp;nbsp; how to achieve it rather then creating separate tabs for each file and using same code in it.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; &lt;/SPAN&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Aug 2018 09:29:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Max-date-in-each-of-the-file/m-p/109662#M17125</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-22T09:29:32Z</dc:date>
    </item>
    <item>
      <title>Re: Max date in each of the file</title>
      <link>https://community.qlik.com/t5/QlikView/Max-date-in-each-of-the-file/m-p/109663#M17126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use smth like this first:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tmp:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month_Year, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; EMPID, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DOJ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FileName() as File //this is how u can find name of the file for each row (&lt;A href="https://help.qlik.com/en-US/qlikview/November2017/Subsystems/Client/Content/Scripting/FileFunctions/FileName.htm" title="https://help.qlik.com/en-US/qlikview/November2017/Subsystems/Client/Content/Scripting/FileFunctions/FileName.htm"&gt;https://help.qlik.com/en-US/qlikview/November2017/Subsystems/Client/Content/Scripting/FileFunctions/FileName.htm&lt;/A&gt;)&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;C&gt; // this is how you can load any file from the folder&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then group your data with conditions you need and your file name. Read more here:&lt;A href="https://help.qlik.com/en-US/qlikview/November2017/Subsystems/Client/Content/Scripting/ScriptRegularStatements/Load.htm" title="https://help.qlik.com/en-US/qlikview/November2017/Subsystems/Client/Content/Scripting/ScriptRegularStatements/Load.htm"&gt;https://help.qlik.com/en-US/qlikview/November2017/Subsystems/Client/Content/Scripting/ScriptRegularStatements/Load.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dont forget to drop tables and fields you dont need anymore.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Hope this will help)&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;AGB&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Aug 2018 10:54:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Max-date-in-each-of-the-file/m-p/109663#M17126</guid>
      <dc:creator>sewialwork</dc:creator>
      <dc:date>2018-08-22T10:54:34Z</dc:date>
    </item>
    <item>
      <title>Re: Max date in each of the file</title>
      <link>https://community.qlik.com/t5/QlikView/Max-date-in-each-of-the-file/m-p/109664#M17127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just try it with this approach:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load * from Path\*.xlsx where date(floor(monthend(DOJ)), 'DD-MMM-YY') = Month_Year;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Aug 2018 11:05:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Max-date-in-each-of-the-file/m-p/109664#M17127</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2018-08-22T11:05:04Z</dc:date>
    </item>
    <item>
      <title>Re: Max date in each of the file</title>
      <link>https://community.qlik.com/t5/QlikView/Max-date-in-each-of-the-file/m-p/109665#M17128</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;Kindly try Below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FinalData:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;'03' as Source,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month_Year,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; EMPID,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MonthStart(Date(DOJ)) as DOJ&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM [lib://Bagic Master/201803.xlsx]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(ooxml, embedded labels, table is Sheet1) ;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Concatenate&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;'02' as Source,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month_Year,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; EMPID,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MonthStart(Date(DOJ)) as DOJ&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM [lib://Bagic Master/201802.xlsx]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(ooxml, embedded labels, table is Sheet1);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Concatenate&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; '01' as Source,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month_Year,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; EMPID,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp; MonthStart(Date(DOJ)) as DOJ&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM [lib://Bagic Master/201801.xlsx]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(ooxml, embedded labels, table is Sheet1);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Right Join (FinalData)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD Source,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; Max(DOJ) as DOJ&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Resident FinalData&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Group by Source;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Exit Script;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Arvind Patil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Aug 2018 11:10:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Max-date-in-each-of-the-file/m-p/109665#M17128</guid>
      <dc:creator>arvind_patil</dc:creator>
      <dc:date>2018-08-22T11:10:41Z</dc:date>
    </item>
    <item>
      <title>Re: Max date in each of the file</title>
      <link>https://community.qlik.com/t5/QlikView/Max-date-in-each-of-the-file/m-p/109666#M17129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Arvind.&lt;/P&gt;&lt;P&gt;Bur the requirement is what if we are dealing with multiple file if in case&lt;/P&gt;&lt;P&gt;i hv 10 files i vl have to do the same for 10 files.&lt;/P&gt;&lt;P&gt;I am looking for other alternatives.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Aug 2018 11:53:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Max-date-in-each-of-the-file/m-p/109666#M17129</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-22T11:53:56Z</dc:date>
    </item>
    <item>
      <title>Re: Max date in each of the file</title>
      <link>https://community.qlik.com/t5/QlikView/Max-date-in-each-of-the-file/m-p/109667#M17130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marcus,&lt;/P&gt;&lt;P&gt;Its but always DOJ might not be same as Month_Year&lt;/P&gt;&lt;P&gt;It could be that month year os 31-Mar-18 while for DOj max is 31-Jan-18 ..so we need to find max on basis of DOJ &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Aug 2018 11:59:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Max-date-in-each-of-the-file/m-p/109667#M17130</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-22T11:59:56Z</dc:date>
    </item>
    <item>
      <title>Re: Max date in each of the file</title>
      <link>https://community.qlik.com/t5/QlikView/Max-date-in-each-of-the-file/m-p/109668#M17131</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;may be like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for each vFilename in filelist('path.filename.xls')&lt;/P&gt;&lt;P&gt;temp:&lt;/P&gt;&lt;P&gt;load &lt;/P&gt;&lt;P&gt;max(DOJ),&lt;/P&gt;&lt;P&gt;EMPID,&lt;/P&gt;&lt;P&gt;Monthyear&lt;/P&gt;&lt;P&gt;from$(vFilename)(biff...)&lt;/P&gt;&lt;P&gt;group by EMPID,MonthYear;&lt;/P&gt;&lt;P&gt;Next vFilename&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;store tablename into&amp;nbsp; path.qvd&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Aug 2018 12:04:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Max-date-in-each-of-the-file/m-p/109668#M17131</guid>
      <dc:creator>manoranjan_d</dc:creator>
      <dc:date>2018-08-22T12:04:28Z</dc:date>
    </item>
    <item>
      <title>Re: Max date in each of the file</title>
      <link>https://community.qlik.com/t5/QlikView/Max-date-in-each-of-the-file/m-p/109669#M17132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then maybe with an inner join filter like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;excel:&lt;/P&gt;&lt;P&gt;load *, date(floor(monthend(DOJ)), 'DD-MMM-YY') as Filter, filebasename() as Source &lt;/P&gt;&lt;P&gt;from Path\*.xlsx;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;inner join(excel)&lt;/P&gt;&lt;P&gt;load Source, max(Filter) as Filter resident excel group by Source;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Aug 2018 12:13:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Max-date-in-each-of-the-file/m-p/109669#M17132</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2018-08-22T12:13:46Z</dc:date>
    </item>
    <item>
      <title>Re: Max date in each of the file</title>
      <link>https://community.qlik.com/t5/QlikView/Max-date-in-each-of-the-file/m-p/109670#M17133</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;may be this can help you hope so&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;for each vFilename in filelist('path.filename.xls')&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;temp1:&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;date(DOJ,'MMM-YY)) as DOJ1,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;ID,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Month_Year&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;DOJ&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;from$(vFilename)(biff...)&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Next vFilename&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;inner join&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;temp1:&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;max(date(DOJ)'MMM-YY)) as DOJ1,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;from$(vFilename)(biff...)&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Next vFilename&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;step1: &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;retrieve&lt;/SPAN&gt;all the record from path&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;step2: retrieve only the max(doj)month-year and make inner join from path&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Aug 2018 12:18:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Max-date-in-each-of-the-file/m-p/109670#M17133</guid>
      <dc:creator>manoranjan_d</dc:creator>
      <dc:date>2018-08-22T12:18:05Z</dc:date>
    </item>
  </channel>
</rss>

