<?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 simple count function in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/simple-count-function/m-p/1445215#M797394</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;Can any one please help me on this.&lt;/P&gt;&lt;P&gt;Under DOB field I have entries like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DOB&lt;/P&gt;&lt;P&gt;1991-05-12&lt;/P&gt;&lt;P&gt;2002-01-29&lt;/P&gt;&lt;P&gt;1985-06-30&lt;/P&gt;&lt;P&gt;2011/19/01&lt;/P&gt;&lt;P&gt;02/05/2015&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to count the DOB where is not in the YYYY-MM-DD format.&lt;/P&gt;&lt;P&gt;Example &lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;2011/19/01&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;02/05/2015 is in different format so the count is 2.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator>bhavvibudagam</dc:creator>
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>simple count function</title>
      <link>https://community.qlik.com/t5/QlikView/simple-count-function/m-p/1445215#M797394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;Can any one please help me on this.&lt;/P&gt;&lt;P&gt;Under DOB field I have entries like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DOB&lt;/P&gt;&lt;P&gt;1991-05-12&lt;/P&gt;&lt;P&gt;2002-01-29&lt;/P&gt;&lt;P&gt;1985-06-30&lt;/P&gt;&lt;P&gt;2011/19/01&lt;/P&gt;&lt;P&gt;02/05/2015&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to count the DOB where is not in the YYYY-MM-DD format.&lt;/P&gt;&lt;P&gt;Example &lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;2011/19/01&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;02/05/2015 is in different format so the count is 2.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/simple-count-function/m-p/1445215#M797394</guid>
      <dc:creator>bhavvibudagam</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: simple count function</title>
      <link>https://community.qlik.com/t5/QlikView/simple-count-function/m-p/1445216#M797395</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be create flag like?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If(Date(DOB, 'YYYY-MM-DD'), 1,0) as Flag&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And expression is&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; Count({&amp;lt;Flag = {0}&amp;gt;} Date)&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Dec 2017 12:04:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/simple-count-function/m-p/1445216#M797395</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-12-07T12:04:43Z</dc:date>
    </item>
    <item>
      <title>Re: simple count function</title>
      <link>https://community.qlik.com/t5/QlikView/simple-count-function/m-p/1445217#M797396</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If(IsNum(Num(Date#(DOB, 'YYYY/DD/MM'))), 1,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If(&lt;/STRONG&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;IsNum(Num(Date#(DOB, 'DD/MM/YYYY'))), 2)) as DOBFormatFlag&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then just do &lt;STRONG&gt;Count(DISTINCT DOBFormatFlag)&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Dec 2017 12:08:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/simple-count-function/m-p/1445217#M797396</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-12-07T12:08:05Z</dc:date>
    </item>
  </channel>
</rss>

