<?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: Script check! in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Script-check/m-p/1151315#M894008</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: black; font-size: 9pt !important; font-style: inherit; background-color: inherit; font-weight: inherit;"&gt;This will count all product_name, but only from 2017:&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14706865659812433 jive_text_macro" jivemacro_uid="_14706865659812433"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt !important;"&gt;count({$&amp;lt;Release={'2017'}&amp;gt;} DISTINCT Product_Name)&amp;nbsp; &lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&lt;SPAN style="color: black; font-size: 9pt !important; font-style: inherit; background-color: inherit; font-weight: inherit;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black; font-size: 9pt !important; font-style: inherit; background-color: inherit; font-weight: inherit;"&gt;This for example will count all, without those released in 2017 &amp;amp; 2018&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14706865258544580 jive_text_macro" jivemacro_uid="_14706865258544580"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt !important; background-color: inherit;"&gt;count({$&amp;lt;Release={*}-{'2017','2018'}&amp;gt;} DISTINCT Product_Name)&amp;nbsp; &lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check below to get more info:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-8174"&gt;Set Analysis - Part 2 - Cool Stuff You Can Do (video)&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 08 Aug 2016 20:03:28 GMT</pubDate>
    <dc:creator />
    <dc:date>2016-08-08T20:03:28Z</dc:date>
    <item>
      <title>Script check!</title>
      <link>https://community.qlik.com/t5/QlikView/Script-check/m-p/1151310#M894003</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if(Release='2015' &lt;/P&gt;&lt;P&gt;or Release='2016'&lt;/P&gt;&lt;P&gt;or Release='2014'&lt;/P&gt;&lt;P&gt;and ( Release &amp;lt;&amp;gt; '2017' and Release &amp;lt;&amp;gt; '2018') , count(distinct(Product_Name)))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want count number of products that have releases before 2017 but does not have releases after 2017&lt;/P&gt;&lt;P&gt;What is wrong with my script here? I won't work. please help.&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/Script-check/m-p/1151310#M894003</guid>
      <dc:creator />
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Script check!</title>
      <link>https://community.qlik.com/t5/QlikView/Script-check/m-p/1151311#M894004</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;load count Distinc &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Product_Name as Qtd&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;from ... where &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Release='2015'&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;or Release='2016'&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;or Release='2014'&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;and ( Release &amp;lt;&amp;gt; '2017' and Release &amp;lt;&amp;gt; '2018')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Aug 2016 19:45:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-check/m-p/1151311#M894004</guid>
      <dc:creator />
      <dc:date>2016-08-08T19:45:15Z</dc:date>
    </item>
    <item>
      <title>Re: Script check!</title>
      <link>https://community.qlik.com/t5/QlikView/Script-check/m-p/1151312#M894005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello David,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How about this (I assume you want to use this as a chart expression):&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14706856551375894 jive_text_macro" jivemacro_uid="_14706856551375894"&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;count({$&amp;lt;Release={"&amp;gt;=2014&amp;lt;2017"}&amp;gt;} DISTINCT &lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Product_Name&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;)&lt;/SPAN&gt;&lt;/P&gt;

&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Kuba&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Aug 2016 19:47:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-check/m-p/1151312#M894005</guid>
      <dc:creator />
      <dc:date>2016-08-08T19:47:43Z</dc:date>
    </item>
    <item>
      <title>Re: Script check!</title>
      <link>https://community.qlik.com/t5/QlikView/Script-check/m-p/1151313#M894006</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;P&gt;Exclude:&lt;/P&gt;&lt;P&gt;LOAD Product as ProductToExclude&lt;/P&gt;&lt;P&gt;FROM YourtableSource&lt;/P&gt;&lt;P&gt;WHERE &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt; Release &amp;gt;=2017;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Result:&lt;/P&gt;&lt;P&gt;LOAD Count(DISTINCT Product) as ProductCount&lt;/P&gt;&lt;P&gt;FROM YourTableSource&lt;/P&gt;&lt;P&gt;WHERE NOT EXISTS( ProductToExclude, Product)&lt;/P&gt;&lt;P&gt;AND &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Release &amp;lt; 2017;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP TABLE Exclude;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Aug 2016 19:49:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-check/m-p/1151313#M894006</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-08-08T19:49:57Z</dc:date>
    </item>
    <item>
      <title>Re: Script check!</title>
      <link>https://community.qlik.com/t5/QlikView/Script-check/m-p/1151314#M894007</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes I want to do it in chart expression. but in my real data there are releases that are named with character not just with numbers. can I specifically name them? not using range of number of years? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Aug 2016 19:53:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-check/m-p/1151314#M894007</guid>
      <dc:creator />
      <dc:date>2016-08-08T19:53:04Z</dc:date>
    </item>
    <item>
      <title>Re: Script check!</title>
      <link>https://community.qlik.com/t5/QlikView/Script-check/m-p/1151315#M894008</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: black; font-size: 9pt !important; font-style: inherit; background-color: inherit; font-weight: inherit;"&gt;This will count all product_name, but only from 2017:&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14706865659812433 jive_text_macro" jivemacro_uid="_14706865659812433"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt !important;"&gt;count({$&amp;lt;Release={'2017'}&amp;gt;} DISTINCT Product_Name)&amp;nbsp; &lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&lt;SPAN style="color: black; font-size: 9pt !important; font-style: inherit; background-color: inherit; font-weight: inherit;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black; font-size: 9pt !important; font-style: inherit; background-color: inherit; font-weight: inherit;"&gt;This for example will count all, without those released in 2017 &amp;amp; 2018&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14706865258544580 jive_text_macro" jivemacro_uid="_14706865258544580"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt !important; background-color: inherit;"&gt;count({$&amp;lt;Release={*}-{'2017','2018'}&amp;gt;} DISTINCT Product_Name)&amp;nbsp; &lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check below to get more info:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-8174"&gt;Set Analysis - Part 2 - Cool Stuff You Can Do (video)&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Aug 2016 20:03:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-check/m-p/1151315#M894008</guid>
      <dc:creator />
      <dc:date>2016-08-08T20:03:28Z</dc:date>
    </item>
  </channel>
</rss>

