<?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: Expression Problem in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Expression-Problem/m-p/1330121#M826330</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this: &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;count({&amp;lt;Account_Open_Date={"$(= '&amp;gt;=' &amp;amp; '201601' &amp;amp; '&amp;lt;=' &amp;amp; '201603')"}&amp;gt;} key)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 05 Jul 2017 09:04:32 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2017-07-05T09:04:32Z</dc:date>
    <item>
      <title>Expression Problem</title>
      <link>https://community.qlik.com/t5/QlikView/Expression-Problem/m-p/1330119#M826328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have file like below, and I would to count number keys between&amp;nbsp; 201601 and 201603 based on the Account _Open_Date using &lt;STRONG&gt;If condition.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;IMG alt="Example.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/169125_Example.PNG" style="height: auto;" /&gt;&lt;/STRONG&gt;&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/Expression-Problem/m-p/1330119#M826328</guid>
      <dc:creator />
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Expression Problem</title>
      <link>https://community.qlik.com/t5/QlikView/Expression-Problem/m-p/1330120#M826329</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What was the logic behind for 201601 and 201603 ??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jul 2017 08:58:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression-Problem/m-p/1330120#M826329</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-07-05T08:58:43Z</dc:date>
    </item>
    <item>
      <title>Re: Expression Problem</title>
      <link>https://community.qlik.com/t5/QlikView/Expression-Problem/m-p/1330121#M826330</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this: &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;count({&amp;lt;Account_Open_Date={"$(= '&amp;gt;=' &amp;amp; '201601' &amp;amp; '&amp;lt;=' &amp;amp; '201603')"}&amp;gt;} key)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jul 2017 09:04:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression-Problem/m-p/1330121#M826330</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-07-05T09:04:32Z</dc:date>
    </item>
    <item>
      <title>Re: Expression Problem</title>
      <link>https://community.qlik.com/t5/QlikView/Expression-Problem/m-p/1330122#M826331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Using Set Analysis:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;count({&amp;lt;Account_Open_Date={'201601','201602','201603'}&amp;gt;}Key)&lt;UL&gt;&lt;LI&gt;Because this have not date format, then I don't know if you can use &amp;lt; or &amp;gt; symbols&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Usign If is almost the same (but I'm not sure if it works)&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;count(if(Account_Open_Date = &lt;SPAN style="font-size: 13.3333px;"&gt;'201601' or &lt;SPAN style="font-size: 13.3333px;"&gt;Account_Open_Date = &lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;'201602' or &lt;SPAN style="font-size: 13.3333px;"&gt;Account_Open_Date = &lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;'201603', Key)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jul 2017 09:10:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression-Problem/m-p/1330122#M826331</guid>
      <dc:creator>jmvilaplanap</dc:creator>
      <dc:date>2017-07-05T09:10:44Z</dc:date>
    </item>
    <item>
      <title>Re: Expression Problem</title>
      <link>https://community.qlik.com/t5/QlikView/Expression-Problem/m-p/1330123#M826332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Key can repeat?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/169174_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want distinct count&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Count(DISTINCT {&amp;lt;Account_Open_Date = {'&amp;gt;=201601&amp;lt;=201603'}&amp;gt;} Key)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want count&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;Count({&amp;lt;Account_Open_Date = {'&amp;gt;=201601&amp;lt;=201603'}&amp;gt;} Key)&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jul 2017 12:04:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression-Problem/m-p/1330123#M826332</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-07-05T12:04:00Z</dc:date>
    </item>
  </channel>
</rss>

