<?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 Data Load from excel and filteration in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Data-Load-from-excel-and-filteration/m-p/1022796#M345879</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;I am loading data directly from excel which are having many columns. Sample format of the data is below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="sample.PNG" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/114458_sample.PNG" style="height: 105px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I need to summarize the data information from this loaded table.&amp;nbsp; The summarized data should contain one row value for a specified date having max value for the column power.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ie for 11/10 the i need the 3rd row (4225) of the data and for 10/10 the selected row will be the last ( 4230)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Appreciate your help in creating a load script to achieve this in qlik sense..&amp;nbsp; I am a beginner in using this application.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 12 Feb 2016 13:19:13 GMT</pubDate>
    <dc:creator />
    <dc:date>2016-02-12T13:19:13Z</dc:date>
    <item>
      <title>Data Load from excel and filteration</title>
      <link>https://community.qlik.com/t5/QlikView/Data-Load-from-excel-and-filteration/m-p/1022796#M345879</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;I am loading data directly from excel which are having many columns. Sample format of the data is below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="sample.PNG" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/114458_sample.PNG" style="height: 105px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I need to summarize the data information from this loaded table.&amp;nbsp; The summarized data should contain one row value for a specified date having max value for the column power.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ie for 11/10 the i need the 3rd row (4225) of the data and for 10/10 the selected row will be the last ( 4230)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Appreciate your help in creating a load script to achieve this in qlik sense..&amp;nbsp; I am a beginner in using this application.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Feb 2016 13:19:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-Load-from-excel-and-filteration/m-p/1022796#M345879</guid>
      <dc:creator />
      <dc:date>2016-02-12T13:19:13Z</dc:date>
    </item>
    <item>
      <title>Re: Data Load from excel and filteration</title>
      <link>https://community.qlik.com/t5/QlikView/Data-Load-from-excel-and-filteration/m-p/1022797#M345880</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can create a flag field in the script by joining the table with a summary table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table1:&lt;/P&gt;&lt;P&gt;LOAD * FROM ...excel_file...;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;JOIN (Table1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Date/Time],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; VILLA_ID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Max(Power) as Power,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1 as IsMaxPowerRecord&lt;/P&gt;&lt;P&gt;RESIDENT &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Table1&lt;/P&gt;&lt;P&gt;GROUP BY &lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Date/Time],&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; VILLA_ID&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can then use the new field IsMaxPowerRecord (or whatever you decide to us as field name) to filter the data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 13 Feb 2016 14:32:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-Load-from-excel-and-filteration/m-p/1022797#M345880</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-02-13T14:32:25Z</dc:date>
    </item>
  </channel>
</rss>

