<?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(...) if no values selected in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/count-if-no-values-selected/m-p/434063#M488370</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: trebuchet ms,geneva;"&gt;Hi Sandro,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: trebuchet ms,geneva;"&gt;The reason why you get the same result is because you are using Count() function which returns total number of rows when there are no selection in the model. Please remember that aggregations are performed on full set of data when there are no selections. However, data is filtered when you make selections hence Count() would give the right number of values. To keep it simple…always remember that – No Selections in QlikView means Selecting All. I hope this makes sense.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: trebuchet ms,geneva;"&gt;Marco is right with that expression. However if you wanted to take this expression a step further where you wanted to check the selection state across all the fields in one Variable/Expression then use the below one…&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-family: trebuchet ms,geneva;"&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-family: trebuchet ms,geneva;"&gt;&lt;STRONG&gt;vMySelectionState&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; =&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: black; font-size: 9pt;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: blue; font-size: 9pt;"&gt;Concat&lt;/SPAN&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt;('GetSelectedCount([' &amp;amp; &lt;/SPAN&gt;&lt;SPAN style="color: maroon; font-size: 9pt;"&gt;$Field&lt;/SPAN&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt; &amp;amp; '])', '+') &lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: trebuchet ms,geneva;"&gt;Then you can use $ (Dollar Sign Expansion) &lt;SPAN style="color: #003366;"&gt;&lt;STRONG&gt;$(=vMySelectionState) &lt;/STRONG&gt;&lt;/SPAN&gt;to check if there are any selections in the entire application.&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: trebuchet ms,geneva;"&gt;Note: Please include the “=” before the Concat function in the above expression.&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: trebuchet ms,geneva;"&gt;I hope this helps!&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: trebuchet ms,geneva;"&gt;Cheers,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: trebuchet ms,geneva;"&gt;DV&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: trebuchet ms,geneva;"&gt;&lt;A href="http://www.QlikShare.com"&gt;www.QlikShare.com&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 18 Jan 2013 11:15:04 GMT</pubDate>
    <dc:creator>IAMDV</dc:creator>
    <dc:date>2013-01-18T11:15:04Z</dc:date>
    <item>
      <title>count(...) if no values selected</title>
      <link>https://community.qlik.com/t5/QlikView/count-if-no-values-selected/m-p/434059#M488363</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another question, a simple one I think &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to get a string of selected values of a field. The following code does the trick pretty neatly:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13585042318983900" jivemacro_uid="_13585042318983900"&gt;&lt;P&gt;Concat(distinct {$} fieldName, ',')&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Until NO values are selected. Then it still returns the full set of values, whereas I'd expected to get an empty string&lt;/P&gt;&lt;P&gt;I tried the following as a workaround, but the count() function seems to show the same behaviour (which I haven't quite understood, yet)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13585042254716274" jivemacro_uid="_13585042254716274"&gt;&lt;P&gt;if(count(distinct {$} fieldName) &amp;gt; 0; Concat(distinct {$} fieldName, ','); '')&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What am I missing here?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;Sandro&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jan 2013 10:17:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/count-if-no-values-selected/m-p/434059#M488363</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-01-18T10:17:45Z</dc:date>
    </item>
    <item>
      <title>Re: count(...) if no values selected</title>
      <link>https://community.qlik.com/t5/QlikView/count-if-no-values-selected/m-p/434060#M488364</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Use this&lt;/P&gt;&lt;P&gt;GetFieldSelections&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;CAMPO&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,';',100) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jan 2013 10:26:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/count-if-no-values-selected/m-p/434060#M488364</guid>
      <dc:creator />
      <dc:date>2013-01-18T10:26:06Z</dc:date>
    </item>
    <item>
      <title>Re: count(...) if no values selected</title>
      <link>https://community.qlik.com/t5/QlikView/count-if-no-values-selected/m-p/434061#M488366</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That works the way I thought it should &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any reasoning as to why the other two would behave the way they do, though? Maybe I am missing something in the set analysis concept or something&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco, you'll get the correct answer. I just want to wait another hour to see whether someone can enlighten me about this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sandro&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jan 2013 10:56:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/count-if-no-values-selected/m-p/434061#M488366</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-01-18T10:56:00Z</dc:date>
    </item>
    <item>
      <title>Re: count(...) if no values selected</title>
      <link>https://community.qlik.com/t5/QlikView/count-if-no-values-selected/m-p/434062#M488369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oh, I just realized something else:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I also need is to do this on a certain alternate state. As far as I can see the getCurrentSelections() function doesn't support set analysis, does it? Anyone has an alternative?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sandro&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jan 2013 11:02:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/count-if-no-values-selected/m-p/434062#M488369</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-01-18T11:02:08Z</dc:date>
    </item>
    <item>
      <title>Re: count(...) if no values selected</title>
      <link>https://community.qlik.com/t5/QlikView/count-if-no-values-selected/m-p/434063#M488370</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: trebuchet ms,geneva;"&gt;Hi Sandro,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: trebuchet ms,geneva;"&gt;The reason why you get the same result is because you are using Count() function which returns total number of rows when there are no selection in the model. Please remember that aggregations are performed on full set of data when there are no selections. However, data is filtered when you make selections hence Count() would give the right number of values. To keep it simple…always remember that – No Selections in QlikView means Selecting All. I hope this makes sense.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: trebuchet ms,geneva;"&gt;Marco is right with that expression. However if you wanted to take this expression a step further where you wanted to check the selection state across all the fields in one Variable/Expression then use the below one…&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-family: trebuchet ms,geneva;"&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-family: trebuchet ms,geneva;"&gt;&lt;STRONG&gt;vMySelectionState&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; =&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: black; font-size: 9pt;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: blue; font-size: 9pt;"&gt;Concat&lt;/SPAN&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt;('GetSelectedCount([' &amp;amp; &lt;/SPAN&gt;&lt;SPAN style="color: maroon; font-size: 9pt;"&gt;$Field&lt;/SPAN&gt;&lt;SPAN style="color: black; font-size: 9pt;"&gt; &amp;amp; '])', '+') &lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: trebuchet ms,geneva;"&gt;Then you can use $ (Dollar Sign Expansion) &lt;SPAN style="color: #003366;"&gt;&lt;STRONG&gt;$(=vMySelectionState) &lt;/STRONG&gt;&lt;/SPAN&gt;to check if there are any selections in the entire application.&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: trebuchet ms,geneva;"&gt;Note: Please include the “=” before the Concat function in the above expression.&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: trebuchet ms,geneva;"&gt;I hope this helps!&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: trebuchet ms,geneva;"&gt;Cheers,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: trebuchet ms,geneva;"&gt;DV&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: trebuchet ms,geneva;"&gt;&lt;A href="http://www.QlikShare.com"&gt;www.QlikShare.com&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jan 2013 11:15:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/count-if-no-values-selected/m-p/434063#M488370</guid>
      <dc:creator>IAMDV</dc:creator>
      <dc:date>2013-01-18T11:15:04Z</dc:date>
    </item>
    <item>
      <title>Re: count(...) if no values selected</title>
      <link>https://community.qlik.com/t5/QlikView/count-if-no-values-selected/m-p/434064#M488371</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Deepak, thank you for the answer!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let's say that the rule you gave me is something, that I can remember, but not something I can make a lot of sense off &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I understand the idea of the variable, that is dynamically evaluated as well. Will keep that concept in mind for later&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But it also doesn't solve the problem I posted in my last message (you might not have seen that, yet). How to determine all this for a particular alternate state?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sandro&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jan 2013 11:22:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/count-if-no-values-selected/m-p/434064#M488371</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-01-18T11:22:46Z</dc:date>
    </item>
    <item>
      <title>Re: count(...) if no values selected</title>
      <link>https://community.qlik.com/t5/QlikView/count-if-no-values-selected/m-p/434065#M488372</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;take this&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;examle&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;&amp;nbsp; &lt;SPAN style="color: #800000; font-size: 8pt;"&gt;CAMPO_CHEAK&lt;/SPAN&gt;='A' or 'B'&amp;nbsp; or 'C'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;&lt;P&gt;SubStringCount&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;GetFieldSelections&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;CAMPO_CHEAK&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,';',63),'A')&lt;/SPAN&gt; &lt;/P&gt;&lt;/SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jan 2013 11:44:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/count-if-no-values-selected/m-p/434065#M488372</guid>
      <dc:creator />
      <dc:date>2013-01-18T11:44:08Z</dc:date>
    </item>
    <item>
      <title>Re: count(...) if no values selected</title>
      <link>https://community.qlik.com/t5/QlikView/count-if-no-values-selected/m-p/434066#M488373</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: trebuchet ms,geneva; color: #333333; font-size: 10pt;"&gt;Hi Sandro,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: trebuchet ms,geneva; color: #333333; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: trebuchet ms,geneva; color: #333333; font-size: 10pt;"&gt;I understand this logic is counter Intuitive to how we (humans) think! However, consider this example where Count() &amp;amp; Sum() returning zero when there is no selection. So if the user logins into the application for the first time then he will see the results a Zero for every chart. Does that make sense? I don’t think it doesn’t make sense. QlikTech has to follow a path and to me they made logical decision with this behaviour.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: trebuchet ms,geneva; color: #333333; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: trebuchet ms,geneva; color: #333333; font-size: 10pt;"&gt;To resolve your issue please try something like this…&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: trebuchet ms,geneva; color: #333333; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: white;"&gt;&lt;EM&gt;&lt;STRONG&gt;&lt;SPAN lang="EN" style="font-family: trebuchet ms,geneva; color: #003300; font-size: 10pt;"&gt;if(GetSelectedCount(fieldName) &amp;gt; 0; Concat(distinct {$} fieldName, ','); '')&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P style="background: white;"&gt;&lt;EM&gt;&lt;STRONG&gt;&lt;SPAN lang="EN" style="font-family: trebuchet ms,geneva; color: #333333; font-size: 10pt;"&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P style="background: white;"&gt;&lt;SPAN lang="EN" style="font-family: trebuchet ms,geneva; color: #333333; font-size: 10pt;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: white;"&gt;&lt;SPAN lang="EN" style="font-family: trebuchet ms,geneva; color: #333333; font-size: 10pt;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: white;"&gt;&lt;SPAN lang="EN" style="font-family: trebuchet ms,geneva; color: #333333; font-size: 10pt;"&gt;I hope this helps!&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: white;"&gt;&lt;SPAN lang="EN" style="font-family: trebuchet ms,geneva; color: #333333; font-size: 10pt;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: white;"&gt;&lt;SPAN lang="EN" style="font-family: trebuchet ms,geneva; color: #333333; font-size: 10pt;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: white;"&gt;&lt;SPAN lang="EN" style="font-family: trebuchet ms,geneva; color: #333333; font-size: 10pt;"&gt;Cheers,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: white;"&gt;&lt;SPAN lang="EN" style="font-family: trebuchet ms,geneva; color: #333333; font-size: 10pt;"&gt;DV&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jan 2013 13:24:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/count-if-no-values-selected/m-p/434066#M488373</guid>
      <dc:creator>IAMDV</dc:creator>
      <dc:date>2013-01-18T13:24:00Z</dc:date>
    </item>
    <item>
      <title>Re: count(...) if no values selected</title>
      <link>https://community.qlik.com/t5/QlikView/count-if-no-values-selected/m-p/434067#M488374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: trebuchet ms,geneva;"&gt;Sandro - Did you try GetSelectedCount() function with your original expression?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: trebuchet ms,geneva;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: trebuchet ms,geneva;"&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: trebuchet ms,geneva;"&gt;DV&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: trebuchet ms,geneva;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: trebuchet ms,geneva;"&gt;&lt;A href="http://www.QlikShare.com"&gt;www.QlikShare.com&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jan 2013 15:13:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/count-if-no-values-selected/m-p/434067#M488374</guid>
      <dc:creator>IAMDV</dc:creator>
      <dc:date>2013-01-18T15:13:37Z</dc:date>
    </item>
  </channel>
</rss>

