<?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: What is the difference between these expressions? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-these-expressions/m-p/350655#M492459</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: blue; font-size: 9pt;"&gt;count&lt;/SPAN&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt;({$&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: maroon; font-size: 9pt;"&gt;FeeOne&lt;/SPAN&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt;={&lt;/SPAN&gt;&lt;SPAN style="color: maroon; font-size: 9pt;"&gt;"*"&lt;/SPAN&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt;}&amp;gt;}&lt;/SPAN&gt;&lt;SPAN style="color: maroon; font-size: 9pt;"&gt;Shipments&lt;/SPAN&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt;)&amp;nbsp; -&amp;gt; "*" represents all include values , so in this, calculate the shipment based on all value in FeeOne&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: blue; font-size: 9pt;"&gt;Count&lt;/SPAN&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: blue; font-size: 9pt;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: blue; font-size: 9pt;"&gt;IsNull&lt;/SPAN&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: maroon; font-size: 9pt;"&gt;FeeOne&lt;/SPAN&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt;),&lt;/SPAN&gt;&lt;SPAN style="color: maroon; font-size: 9pt;"&gt;Shipments&lt;/SPAN&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt;))&amp;nbsp;&amp;nbsp; -&amp;gt; calculate the shipment,if feeone is null values.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt;you can use like this,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt;Count(If(Len(Trim(FeeOne)) &amp;gt; 0, ShipMent)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt;(or)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt;Count({&amp;lt;FeeOne -={'0'} &amp;gt;} ShipMent)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt;Check one FeeOne has values in your data set..&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt;Example:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Bold"&gt;sum(&lt;/SPAN&gt; {$&amp;lt;Year = {“*”} – {2000}, Product = {“*bearing*”} &amp;gt;} Sales&lt;SPAN class="Bold"&gt; )&lt;/SPAN&gt;&lt;BR /&gt;returns the sales for the current selection but with a new selection in “Year”: all years except 2000; and only for products containing the string ‘bearing’. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt;hope it helps..&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 13 Jul 2012 19:39:37 GMT</pubDate>
    <dc:creator>MayilVahanan</dc:creator>
    <dc:date>2012-07-13T19:39:37Z</dc:date>
    <item>
      <title>What is the difference between these expressions?</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-these-expressions/m-p/350653#M492457</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have two expressions, one to count null values and one to count non-null values. However, they seem to be pulling the opposite thing...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: blue; font-size: 9pt;"&gt;count&lt;/SPAN&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt;({$&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: maroon; font-size: 9pt;"&gt;FeeOne&lt;/SPAN&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt;={&lt;/SPAN&gt;&lt;SPAN style="color: maroon; font-size: 9pt;"&gt;"*"&lt;/SPAN&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt;}&amp;gt;}&lt;/SPAN&gt;&lt;SPAN style="color: maroon; font-size: 9pt;"&gt;Shipments&lt;/SPAN&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt;)&amp;nbsp; &amp;lt;&amp;lt;&amp;lt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;Looks like it counts null values, based on my data set...&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: blue; font-size: 9pt;"&gt;Count&lt;/SPAN&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: blue; font-size: 9pt;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: blue; font-size: 9pt;"&gt;IsNull&lt;/SPAN&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: maroon; font-size: 9pt;"&gt;FeeOne&lt;/SPAN&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt;),&lt;/SPAN&gt;&lt;SPAN style="color: maroon; font-size: 9pt;"&gt;Shipments&lt;/SPAN&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt;))&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&amp;lt;&amp;lt;&amp;lt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;Looks like it counts non-null values, based on my data set...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;I am confused. Help?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jul 2012 19:22:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-these-expressions/m-p/350653#M492457</guid>
      <dc:creator />
      <dc:date>2012-07-13T19:22:19Z</dc:date>
    </item>
    <item>
      <title>Re: What is the difference between these expressions?</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-these-expressions/m-p/350654#M492458</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #eef4f9; font-size: 9pt; font-family: Arial; color: blue;"&gt;count&lt;/SPAN&gt;&lt;SPAN style="background-color: #eef4f9; font-size: 9pt; font-family: Arial; color: black;"&gt;({$&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="background-color: #eef4f9; font-size: 9pt; font-family: Arial; color: maroon;"&gt;FeeOne&lt;/SPAN&gt;&lt;SPAN style="background-color: #eef4f9; font-size: 9pt; font-family: Arial; color: black;"&gt;={&lt;/SPAN&gt;&lt;SPAN style="background-color: #eef4f9; font-size: 9pt; font-family: Arial; color: maroon;"&gt;"*"&lt;/SPAN&gt;&lt;SPAN style="background-color: #eef4f9; font-size: 9pt; font-family: Arial; color: black;"&gt;}&amp;gt;}&lt;/SPAN&gt;&lt;SPAN style="background-color: #eef4f9; font-size: 9pt; font-family: Arial; color: maroon;"&gt;Shipments&lt;/SPAN&gt;&lt;SPAN style="background-color: #eef4f9; font-size: 9pt; font-family: Arial; color: black;"&gt;) &lt;SPAN style="color: #000000; font-family: Arial; font-size: 12px; background-color: #eef4f9;"&gt;is to count number of shipments has non null FeeOne&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #eef4f9; font-size: 9pt; font-family: Arial; color: black;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #eef4f9; font-size: 9pt; font-family: Arial; color: blue;"&gt;Count&lt;/SPAN&gt;&lt;SPAN style="background-color: #eef4f9; font-size: 9pt; font-family: Arial; color: black;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="background-color: #eef4f9; font-size: 9pt; font-family: Arial; color: blue;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="background-color: #eef4f9; font-size: 9pt; font-family: Arial; color: black;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="background-color: #eef4f9; font-size: 9pt; font-family: Arial; color: blue;"&gt;IsNull&lt;/SPAN&gt;&lt;SPAN style="background-color: #eef4f9; font-size: 9pt; font-family: Arial; color: black;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="background-color: #eef4f9; font-size: 9pt; font-family: Arial; color: maroon;"&gt;FeeOne&lt;/SPAN&gt;&lt;SPAN style="background-color: #eef4f9; font-size: 9pt; font-family: Arial; color: black;"&gt;),&lt;/SPAN&gt;&lt;SPAN style="background-color: #eef4f9; font-size: 9pt; font-family: Arial; color: maroon;"&gt;Shipments&lt;/SPAN&gt;&lt;SPAN style="background-color: #eef4f9; font-size: 9pt; font-family: Arial; color: black;"&gt;)) is to count number of shipments has null FeeOne&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nothing wrong in this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Which version of Qlikview ur using?&lt;/P&gt;&lt;P&gt;Why you confused?Did you verified the data?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jul 2012 19:38:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-these-expressions/m-p/350654#M492458</guid>
      <dc:creator>CELAMBARASAN</dc:creator>
      <dc:date>2012-07-13T19:38:14Z</dc:date>
    </item>
    <item>
      <title>Re: What is the difference between these expressions?</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-these-expressions/m-p/350655#M492459</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: blue; font-size: 9pt;"&gt;count&lt;/SPAN&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt;({$&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: maroon; font-size: 9pt;"&gt;FeeOne&lt;/SPAN&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt;={&lt;/SPAN&gt;&lt;SPAN style="color: maroon; font-size: 9pt;"&gt;"*"&lt;/SPAN&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt;}&amp;gt;}&lt;/SPAN&gt;&lt;SPAN style="color: maroon; font-size: 9pt;"&gt;Shipments&lt;/SPAN&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt;)&amp;nbsp; -&amp;gt; "*" represents all include values , so in this, calculate the shipment based on all value in FeeOne&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: blue; font-size: 9pt;"&gt;Count&lt;/SPAN&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: blue; font-size: 9pt;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: blue; font-size: 9pt;"&gt;IsNull&lt;/SPAN&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: maroon; font-size: 9pt;"&gt;FeeOne&lt;/SPAN&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt;),&lt;/SPAN&gt;&lt;SPAN style="color: maroon; font-size: 9pt;"&gt;Shipments&lt;/SPAN&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt;))&amp;nbsp;&amp;nbsp; -&amp;gt; calculate the shipment,if feeone is null values.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt;you can use like this,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt;Count(If(Len(Trim(FeeOne)) &amp;gt; 0, ShipMent)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt;(or)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt;Count({&amp;lt;FeeOne -={'0'} &amp;gt;} ShipMent)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt;Check one FeeOne has values in your data set..&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt;Example:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Bold"&gt;sum(&lt;/SPAN&gt; {$&amp;lt;Year = {“*”} – {2000}, Product = {“*bearing*”} &amp;gt;} Sales&lt;SPAN class="Bold"&gt; )&lt;/SPAN&gt;&lt;BR /&gt;returns the sales for the current selection but with a new selection in “Year”: all years except 2000; and only for products containing the string ‘bearing’. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt;hope it helps..&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jul 2012 19:39:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-these-expressions/m-p/350655#M492459</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2012-07-13T19:39:37Z</dc:date>
    </item>
    <item>
      <title>Re: What is the difference between these expressions?</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-these-expressions/m-p/350656#M492460</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use this to count&amp;nbsp; non null values:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;count({&amp;lt;FeeOne -&lt;STRONG&gt;=&lt;/STRONG&gt; {'*'}&lt;SPAN style="color: #800000; font-family: Arial; font-size: 12px; background-color: #eef4f9;"&gt;Shipments&lt;/SPAN&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and this to count null values or count values that FeeOne is like *&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;count({&amp;lt;FeeOne &lt;STRONG&gt;=&lt;/STRONG&gt; {'*'}&lt;SPAN style="color: #800000; font-family: Arial; font-size: 12px; background-color: #eef4f9;"&gt;Shipments&lt;/SPAN&gt;)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jul 2012 19:40:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-these-expressions/m-p/350656#M492460</guid>
      <dc:creator>chematos</dc:creator>
      <dc:date>2012-07-13T19:40:36Z</dc:date>
    </item>
  </channel>
</rss>

