<?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: Group Statement Error in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Group-Statement-Error/m-p/1722921#M723889</link>
    <description>&lt;P&gt;Thanks Ahamed&lt;/P&gt;&lt;P&gt;In fact I needed to get it through a group by statement. Your solution is something in the first data load with a condition being applied. Any how thanks for the reply!&lt;/P&gt;&lt;P&gt;Neville&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 28 Jun 2020 16:58:20 GMT</pubDate>
    <dc:creator>nevilledhamsiri</dc:creator>
    <dc:date>2020-06-28T16:58:20Z</dc:date>
    <item>
      <title>Group Statement Error</title>
      <link>https://community.qlik.com/t5/QlikView/Group-Statement-Error/m-p/1722903#M723885</link>
      <description>&lt;P&gt;Dear Friends,&lt;/P&gt;&lt;P&gt;I have the attached set of data from which I need to write a group by statement based on the branch field. But when I do this a syntax error comes. I need a separate table to be created for the new condition applied on Paid amount. Is the error due to manner how the script lines are stated or otherwise. Please see to this.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Neville&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/Group-Statement-Error/m-p/1722903#M723885</guid>
      <dc:creator>nevilledhamsiri</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Group Statement Error</title>
      <link>https://community.qlik.com/t5/QlikView/Group-Statement-Error/m-p/1722910#M723886</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/15833"&gt;@nevilledhamsiri&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;you just omitted&amp;nbsp; aggregation: sum, max,...&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;.....

LOAD
BRANCH,
IF(sum(PAID_AMOUNT)&amp;gt;25000,'Furthe to be checked','within the allowed range')AS CLAIM_CAT
Resident CLAIM 
GROUP BY BRANCH;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;attached qvw file&lt;/P&gt;</description>
      <pubDate>Sun, 28 Jun 2020 15:30:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Group-Statement-Error/m-p/1722910#M723886</guid>
      <dc:creator>Taoufiq_Zarra</dc:creator>
      <dc:date>2020-06-28T15:30:08Z</dc:date>
    </item>
    <item>
      <title>Re: Group Statement Error</title>
      <link>https://community.qlik.com/t5/QlikView/Group-Statement-Error/m-p/1722912#M723887</link>
      <description>&lt;P&gt;//////////&lt;EM&gt;&lt;U&gt;&lt;STRONG&gt;Your original Code////////////////&lt;/STRONG&gt;&lt;/U&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;CLAIM:&lt;BR /&gt;LOAD RNUM, BRANCH, REPORTED_DATE, LOSS_DATE, DELAY, CLASS_CODE, PRD_CODE, POLICY_NO,&lt;BR /&gt;NAME_OF_THE_INSURED, CLAIM_NO, RISK, BALANCE_BF, MONTHS_PROVISION, PAID_AMOUNT,&lt;BR /&gt;UNDER_OVER_PROVISION, BALANCE_CF, PAID_DATE, CLOSED_DATE, CLOSED_STAUS, ADVANCED_PAYMENT,&lt;BR /&gt;REMARKS, NO_OF_FINAL_PAYMENTS_IN, NO_OF_ADVANCED_PAYMENTS, PREV_MON_INT_PROV,&lt;BR /&gt;REASON_OUTSTANDING, ME_CODE, CONV_CODE, CAUSE_OF_LOSS, [Paid after Recovery],&lt;BR /&gt;[Reported after Recovery], [Paid after Recovery(2)], [Reported after Recovery(2)],&lt;BR /&gt;[Reported Year]&lt;BR /&gt;FROM [D:\DATA FOR GROUP BY STATEMENT.xlsx] (ooxml, embedded labels, table is SOURCE_DATA);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;LOAD&lt;BR /&gt;BRANCH,&lt;BR /&gt;IF(PAID_AMOUNT&amp;gt;25000,'Furthe to be checked','within the allowed range')AS CLAIM_CAT&lt;BR /&gt;Resident CLAIM&lt;BR /&gt;GROUP BY BRANCH;&lt;/P&gt;&lt;P&gt;\\\\\\\\\\\\\\\\\\\\/////////////////////\\\\\\\\\\\\\\\\\\\\\\\\\\\///////////////////////////\\\\\\\\\\\\\&lt;/P&gt;&lt;P&gt;Use the if statement while loading data :&lt;/P&gt;&lt;P&gt;CLAIM:&lt;BR /&gt;LOAD RNUM, BRANCH, REPORTED_DATE, LOSS_DATE, DELAY, CLASS_CODE, PRD_CODE, POLICY_NO,&lt;BR /&gt;NAME_OF_THE_INSURED, CLAIM_NO, RISK, BALANCE_BF, MONTHS_PROVISION, PAID_AMOUNT,&lt;BR /&gt;UNDER_OVER_PROVISION, BALANCE_CF, PAID_DATE, CLOSED_DATE, CLOSED_STAUS, ADVANCED_PAYMENT,&lt;BR /&gt;REMARKS, NO_OF_FINAL_PAYMENTS_IN, NO_OF_ADVANCED_PAYMENTS, PREV_MON_INT_PROV,&lt;BR /&gt;REASON_OUTSTANDING, ME_CODE, CONV_CODE, CAUSE_OF_LOSS, [Paid after Recovery],&lt;BR /&gt;[Reported after Recovery], [Paid after Recovery(2)], [Reported after Recovery(2)],&lt;BR /&gt;[Reported Year],&lt;/P&gt;&lt;P&gt;IF(PAID_AMOUNT&amp;gt;25000,'Furthe to be checked','within the allowed range')AS CLAIM_CAT&lt;/P&gt;&lt;P&gt;FROM [D:\DATA FOR GROUP BY STATEMENT.xlsx] (ooxml, embedded labels, table is SOURCE_DATA);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 28 Jun 2020 15:35:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Group-Statement-Error/m-p/1722912#M723887</guid>
      <dc:creator>Arslan_Ahmed</dc:creator>
      <dc:date>2020-06-28T15:35:41Z</dc:date>
    </item>
    <item>
      <title>Re: Group Statement Error</title>
      <link>https://community.qlik.com/t5/QlikView/Group-Statement-Error/m-p/1722920#M723888</link>
      <description>&lt;P&gt;Fine, it works now!&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 28 Jun 2020 16:52:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Group-Statement-Error/m-p/1722920#M723888</guid>
      <dc:creator>nevilledhamsiri</dc:creator>
      <dc:date>2020-06-28T16:52:02Z</dc:date>
    </item>
    <item>
      <title>Re: Group Statement Error</title>
      <link>https://community.qlik.com/t5/QlikView/Group-Statement-Error/m-p/1722921#M723889</link>
      <description>&lt;P&gt;Thanks Ahamed&lt;/P&gt;&lt;P&gt;In fact I needed to get it through a group by statement. Your solution is something in the first data load with a condition being applied. Any how thanks for the reply!&lt;/P&gt;&lt;P&gt;Neville&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 28 Jun 2020 16:58:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Group-Statement-Error/m-p/1722921#M723889</guid>
      <dc:creator>nevilledhamsiri</dc:creator>
      <dc:date>2020-06-28T16:58:20Z</dc:date>
    </item>
  </channel>
</rss>

