<?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: Count of a Calculated Measure in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Count-of-a-Calculated-Measure/m-p/1788893#M1210362</link>
    <description>&lt;P&gt;Why not Count(CCY_SETID)?&lt;/P&gt;</description>
    <pubDate>Sat, 06 Mar 2021 20:17:13 GMT</pubDate>
    <dc:creator>Or</dc:creator>
    <dc:date>2021-03-06T20:17:13Z</dc:date>
    <item>
      <title>Count of a Calculated Measure</title>
      <link>https://community.qlik.com/t5/QlikView/Count-of-a-Calculated-Measure/m-p/1788888#M1210360</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I have a calculated field (&lt;STRONG&gt;CCY_SETID)&amp;nbsp;&lt;/STRONG&gt;in my load statement. Now I need to have the total count of (&lt;STRONG&gt;CCY_SETID) . Please help&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;TLMMO:&lt;/P&gt;&lt;P&gt;LOAD&lt;BR /&gt;SET_ID,&lt;BR /&gt;IF(Wildmatch(SET_ID,'*GDS*')=1,NULL(),SET_ID) AS CCY_SETID&lt;/P&gt;&lt;P&gt;FROM&lt;BR /&gt;$(file)&lt;/P&gt;</description>
      <pubDate>Sat, 06 Mar 2021 15:09:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Count-of-a-Calculated-Measure/m-p/1788888#M1210360</guid>
      <dc:creator>arpita</dc:creator>
      <dc:date>2021-03-06T15:09:26Z</dc:date>
    </item>
    <item>
      <title>Re: Count of a Calculated Measure</title>
      <link>https://community.qlik.com/t5/QlikView/Count-of-a-Calculated-Measure/m-p/1788893#M1210362</link>
      <description>&lt;P&gt;Why not Count(CCY_SETID)?&lt;/P&gt;</description>
      <pubDate>Sat, 06 Mar 2021 20:17:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Count-of-a-Calculated-Measure/m-p/1788893#M1210362</guid>
      <dc:creator>Or</dc:creator>
      <dc:date>2021-03-06T20:17:13Z</dc:date>
    </item>
    <item>
      <title>Re: Count of a Calculated Measure</title>
      <link>https://community.qlik.com/t5/QlikView/Count-of-a-Calculated-Measure/m-p/1788902#M1210365</link>
      <description>&lt;P&gt;Try this,&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;TLMMO:
LOAD
SET_ID,
IF(Wildmatch(SET_ID,'*GDS*')=1,NULL(),SET_ID) AS CCY_SETID
FROM
$(file)
;

Left Join(TLMMO)
LOAD SET_ID, Count(CCY_SETID) As Cnt
Resident TLMMO
Group By SET_ID;&lt;/LI-CODE&gt;</description>
      <pubDate>Sun, 07 Mar 2021 00:27:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Count-of-a-Calculated-Measure/m-p/1788902#M1210365</guid>
      <dc:creator>Saravanan_Desingh</dc:creator>
      <dc:date>2021-03-07T00:27:14Z</dc:date>
    </item>
    <item>
      <title>Re: Count of a Calculated Measure</title>
      <link>https://community.qlik.com/t5/QlikView/Count-of-a-Calculated-Measure/m-p/1789525#M1210447</link>
      <description>&lt;P&gt;Hi saran,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This doesnt work&lt;/P&gt;</description>
      <pubDate>Tue, 09 Mar 2021 11:14:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Count-of-a-Calculated-Measure/m-p/1789525#M1210447</guid>
      <dc:creator>arpita</dc:creator>
      <dc:date>2021-03-09T11:14:17Z</dc:date>
    </item>
    <item>
      <title>Re: Count of a Calculated Measure</title>
      <link>https://community.qlik.com/t5/QlikView/Count-of-a-Calculated-Measure/m-p/1790600#M1210590</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I have a calculated field (&lt;STRONG&gt;CCY_SETID)&amp;nbsp;&lt;/STRONG&gt;in my load statement. Now I need to have the total count of (&lt;STRONG&gt;CCY_SETID) . Please help&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;TLMMO:&lt;/P&gt;&lt;P&gt;LOAD&lt;BR /&gt;SET_ID,&lt;BR /&gt;IF(Wildmatch(SET_ID,'*GDS*')=1,NULL(),SET_ID) AS CCY_SETID&lt;/P&gt;&lt;P&gt;FROM&lt;BR /&gt;$(file)&lt;/P&gt;</description>
      <pubDate>Thu, 11 Mar 2021 15:37:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Count-of-a-Calculated-Measure/m-p/1790600#M1210590</guid>
      <dc:creator>arpita</dc:creator>
      <dc:date>2021-03-11T15:37:59Z</dc:date>
    </item>
    <item>
      <title>Re: Count of a Calculated Measure</title>
      <link>https://community.qlik.com/t5/QlikView/Count-of-a-Calculated-Measure/m-p/1790785#M1210608</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;/P&gt;&lt;P&gt;Are you looking something like&amp;nbsp;&lt;/P&gt;&lt;P&gt;Count(Total&amp;nbsp;&lt;STRONG&gt;CCY_SETID)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If not, Can you provide sample data n expected output.&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Mar 2021 04:28:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Count-of-a-Calculated-Measure/m-p/1790785#M1210608</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2021-03-12T04:28:17Z</dc:date>
    </item>
    <item>
      <title>Re: Count of a Calculated Measure</title>
      <link>https://community.qlik.com/t5/QlikView/Count-of-a-Calculated-Measure/m-p/1790805#M1210614</link>
      <description>&lt;P&gt;Hi Mayil, this doenst work in script&lt;/P&gt;</description>
      <pubDate>Fri, 12 Mar 2021 07:48:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Count-of-a-Calculated-Measure/m-p/1790805#M1210614</guid>
      <dc:creator>arpita</dc:creator>
      <dc:date>2021-03-12T07:48:03Z</dc:date>
    </item>
  </channel>
</rss>

