<?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: Coulmn with Max data value in load script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Coulmn-with-Max-data-value-in-load-script/m-p/1532108#M746989</link>
    <description>&lt;P&gt;NoConcatenate&lt;BR /&gt;[DataTable]:&lt;BR /&gt;LOAD Product,&lt;BR /&gt;Date,&lt;BR /&gt;Category,&lt;BR /&gt;[Quty sold]&lt;BR /&gt;FROM&lt;BR /&gt;[Data_Sample.xlsx]&lt;BR /&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;Left Join ([DataTable])&lt;BR /&gt;LOAD Product,&lt;BR /&gt;Date,&lt;BR /&gt;Category,&lt;BR /&gt;Max([Quty sold]) as [Max Qty Sold]&lt;BR /&gt;Resident [DataTable]&lt;BR /&gt;Group By Product,&lt;BR /&gt;Date,&lt;BR /&gt;Category&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Qty.PNG" style="width: 377px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/4044iA6F28EBDCC26CA82/image-size/large?v=v2&amp;amp;px=999" role="button" title="Qty.PNG" alt="Qty.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 18 Jan 2019 13:17:40 GMT</pubDate>
    <dc:creator>vvira1316</dc:creator>
    <dc:date>2019-01-18T13:17:40Z</dc:date>
    <item>
      <title>Coulmn with Max data value in load script</title>
      <link>https://community.qlik.com/t5/QlikView/Coulmn-with-Max-data-value-in-load-script/m-p/1532100#M746987</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="DataImage.png" style="width: 819px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/4041i267D5214F1AB5873/image-size/large?v=v2&amp;amp;px=999" role="button" title="DataImage.png" alt="DataImage.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="DataImage.png" style="width: 819px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/4042iA8E082A05FB715BA/image-size/large?v=v2&amp;amp;px=999" role="button" title="DataImage.png" alt="DataImage.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I have sample data as shown below.&lt;/P&gt;&lt;P&gt;I am trying to achieve is to get last column shown&amp;nbsp;as “Max Quty Sold”.&lt;/P&gt;&lt;P&gt;I have first 4 columns in my data set and I am looking for to generate last column as max of quty sold based on Product, Date and Category.&lt;/P&gt;&lt;P&gt;I want this kind of table on load script side so that I can use last column in my calculations across various charts.&lt;/P&gt;&lt;P&gt;Any help will be appreciated.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Poonam&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Coulmn-with-Max-data-value-in-load-script/m-p/1532100#M746987</guid>
      <dc:creator>poonam_kulwal</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Coulmn with Max data value in load script</title>
      <link>https://community.qlik.com/t5/QlikView/Coulmn-with-Max-data-value-in-load-script/m-p/1532104#M746988</link>
      <description>&lt;P&gt;Try this&lt;/P&gt;&lt;PRE&gt;Table:
LOAD Product, 
     Date, 
     Category, 
     [Quty sold]
FROM
[..\..\Downloads\Data_Sample.xlsx]
(ooxml, embedded labels, table is Sheet1);

Left Join (Table)
LOAD Product,
	 Date,
	 Category,
	 Max([Quty sold]) as [Max Quty Sold]
Resident Table
Group By Product, Date, Category;&lt;/PRE&gt;</description>
      <pubDate>Fri, 18 Jan 2019 13:13:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Coulmn-with-Max-data-value-in-load-script/m-p/1532104#M746988</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2019-01-18T13:13:48Z</dc:date>
    </item>
    <item>
      <title>Re: Coulmn with Max data value in load script</title>
      <link>https://community.qlik.com/t5/QlikView/Coulmn-with-Max-data-value-in-load-script/m-p/1532108#M746989</link>
      <description>&lt;P&gt;NoConcatenate&lt;BR /&gt;[DataTable]:&lt;BR /&gt;LOAD Product,&lt;BR /&gt;Date,&lt;BR /&gt;Category,&lt;BR /&gt;[Quty sold]&lt;BR /&gt;FROM&lt;BR /&gt;[Data_Sample.xlsx]&lt;BR /&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;Left Join ([DataTable])&lt;BR /&gt;LOAD Product,&lt;BR /&gt;Date,&lt;BR /&gt;Category,&lt;BR /&gt;Max([Quty sold]) as [Max Qty Sold]&lt;BR /&gt;Resident [DataTable]&lt;BR /&gt;Group By Product,&lt;BR /&gt;Date,&lt;BR /&gt;Category&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Qty.PNG" style="width: 377px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/4044iA6F28EBDCC26CA82/image-size/large?v=v2&amp;amp;px=999" role="button" title="Qty.PNG" alt="Qty.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Jan 2019 13:17:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Coulmn-with-Max-data-value-in-load-script/m-p/1532108#M746989</guid>
      <dc:creator>vvira1316</dc:creator>
      <dc:date>2019-01-18T13:17:40Z</dc:date>
    </item>
    <item>
      <title>Re: Coulmn with Max data value in load script</title>
      <link>https://community.qlik.com/t5/QlikView/Coulmn-with-Max-data-value-in-load-script/m-p/1532454#M746990</link>
      <description>&lt;P&gt;Thank you Sunny!.&lt;/P&gt;&lt;P&gt;This is very helpful.&lt;/P&gt;&lt;P&gt;However there was also issue with my Date column (in my actual data set). Dates were not interpreted correctly. That leads to not getting desire output with&amp;nbsp; Group by clause and Left join.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Issue is now resolved.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 20 Jan 2019 13:00:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Coulmn-with-Max-data-value-in-load-script/m-p/1532454#M746990</guid>
      <dc:creator>poonam_kulwal</dc:creator>
      <dc:date>2019-01-20T13:00:02Z</dc:date>
    </item>
    <item>
      <title>Re: Coulmn with Max data value in load script</title>
      <link>https://community.qlik.com/t5/QlikView/Coulmn-with-Max-data-value-in-load-script/m-p/1533229#M746991</link>
      <description>&lt;P&gt;Super&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jan 2019 12:22:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Coulmn-with-Max-data-value-in-load-script/m-p/1533229#M746991</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2019-01-22T12:22:41Z</dc:date>
    </item>
  </channel>
</rss>

