<?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: Can we generate front-end summaries through script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Can-we-generate-front-end-summaries-through-script/m-p/1106109#M366336</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How do you want this premium table being merged with the previous table showing the monthly data?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 01 Jun 2016 13:42:23 GMT</pubDate>
    <dc:creator>swuehl</dc:creator>
    <dc:date>2016-06-01T13:42:23Z</dc:date>
    <item>
      <title>Can we generate front-end summaries through script</title>
      <link>https://community.qlik.com/t5/QlikView/Can-we-generate-front-end-summaries-through-script/m-p/1106106#M366333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have attached a one application in which i have created one simple summary through set analysis. Whether it is possible to generate similar kind of summary at a script level and afterwords out put will be get saved in a .csv file. I not want to use the macro to save the file in excel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jun 2016 11:51:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Can-we-generate-front-end-summaries-through-script/m-p/1106106#M366333</guid>
      <dc:creator>pra_kale</dc:creator>
      <dc:date>2016-06-01T11:51:00Z</dc:date>
    </item>
    <item>
      <title>Re: Can we generate front-end summaries through script</title>
      <link>https://community.qlik.com/t5/QlikView/Can-we-generate-front-end-summaries-through-script/m-p/1106107#M366334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14647824317641521" jivemacro_uid="_14647824317641521"&gt;
&lt;P&gt;INPUT:&lt;/P&gt;
&lt;P&gt;LOAD Policy_no, &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year, &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month, &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Channel&lt;/P&gt;
&lt;P&gt;FROM&lt;/P&gt;
&lt;P&gt;[Issuance_1.xlsx]&lt;/P&gt;
&lt;P&gt;(ooxml, embedded labels, table is Issuance);&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;TMP:&lt;/P&gt;
&lt;P&gt;LOAD Channel, Month, Count(DISTINCT Policy_no) as CountMonthly&lt;/P&gt;
&lt;P&gt;Resident INPUT&lt;/P&gt;
&lt;P&gt;GROUP BY Channel, Month;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;LEFT JOIN (TMP)&lt;/P&gt;
&lt;P&gt;LOAD Channel, Count(DISTINCT Policy_no) as CountTotal&lt;/P&gt;
&lt;P&gt;Resident INPUT&lt;/P&gt;
&lt;P&gt;GROUP BY Channel;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Result:&lt;/P&gt;
&lt;P&gt;LOAD Channel, Sum( If(Month=5,CountMonthly/CountTotal)) as Month..May, Sum( If(Month=12,CountMonthly/CountTotal)) as Month..Dec&lt;/P&gt;
&lt;P&gt;RESIDENT TMP&lt;/P&gt;
&lt;P&gt;GROUP BY Channel;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;DROP TABLE TMP;&lt;/P&gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jun 2016 12:00:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Can-we-generate-front-end-summaries-through-script/m-p/1106107#M366334</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-06-01T12:00:37Z</dc:date>
    </item>
    <item>
      <title>Re: Can we generate front-end summaries through script</title>
      <link>https://community.qlik.com/t5/QlikView/Can-we-generate-front-end-summaries-through-script/m-p/1106108#M366335</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;Thanks swuehl...great.... It's working fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just want to ask one more thing if i have one another table for premium then how can achieve this thing. I have attached one sample application after including this additional table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jun 2016 12:57:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Can-we-generate-front-end-summaries-through-script/m-p/1106108#M366335</guid>
      <dc:creator>pra_kale</dc:creator>
      <dc:date>2016-06-01T12:57:30Z</dc:date>
    </item>
    <item>
      <title>Re: Can we generate front-end summaries through script</title>
      <link>https://community.qlik.com/t5/QlikView/Can-we-generate-front-end-summaries-through-script/m-p/1106109#M366336</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How do you want this premium table being merged with the previous table showing the monthly data?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jun 2016 13:42:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Can-we-generate-front-end-summaries-through-script/m-p/1106109#M366336</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-06-01T13:42:23Z</dc:date>
    </item>
    <item>
      <title>Re: Can we generate front-end summaries through script</title>
      <link>https://community.qlik.com/t5/QlikView/Can-we-generate-front-end-summaries-through-script/m-p/1106110#M366337</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 have attached the application and in the summary table i have included the premium.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help Swuehl.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jun 2016 14:54:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Can-we-generate-front-end-summaries-through-script/m-p/1106110#M366337</guid>
      <dc:creator>pra_kale</dc:creator>
      <dc:date>2016-06-01T14:54:05Z</dc:date>
    </item>
    <item>
      <title>Re: Can we generate front-end summaries through script</title>
      <link>https://community.qlik.com/t5/QlikView/Can-we-generate-front-end-summaries-through-script/m-p/1106111#M366338</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe like attached&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jun 2016 15:18:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Can-we-generate-front-end-summaries-through-script/m-p/1106111#M366338</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-06-01T15:18:14Z</dc:date>
    </item>
  </channel>
</rss>

