<?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 Displaying count of blank Emails in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Displaying-count-of-blank-Emails/m-p/295165#M587747</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was wondering if anyway could suggest the best way to display this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a list of email addresses (see below).&amp;nbsp; Anyone who does not have an email address has &lt;STRONG&gt;&amp;lt;Not Answered&amp;gt;&lt;/STRONG&gt; as their email address.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="EmailImage.jpg" class="jive-image" src="https://community.qlik.com/legacyfs/online/4217_EmailImage.jpg" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to be able to display the total number of people with an email address and also the total number of people who do NOT have an email address (i.e. &amp;lt;Not Answered&amp;gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas how best to go about calculating and displaying this would be greatly appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 May 2011 16:04:29 GMT</pubDate>
    <dc:creator>haymarketpaul</dc:creator>
    <dc:date>2011-05-12T16:04:29Z</dc:date>
    <item>
      <title>Displaying count of blank Emails</title>
      <link>https://community.qlik.com/t5/QlikView/Displaying-count-of-blank-Emails/m-p/295165#M587747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was wondering if anyway could suggest the best way to display this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a list of email addresses (see below).&amp;nbsp; Anyone who does not have an email address has &lt;STRONG&gt;&amp;lt;Not Answered&amp;gt;&lt;/STRONG&gt; as their email address.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="EmailImage.jpg" class="jive-image" src="https://community.qlik.com/legacyfs/online/4217_EmailImage.jpg" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to be able to display the total number of people with an email address and also the total number of people who do NOT have an email address (i.e. &amp;lt;Not Answered&amp;gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas how best to go about calculating and displaying this would be greatly appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 May 2011 16:04:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Displaying-count-of-blank-Emails/m-p/295165#M587747</guid>
      <dc:creator>haymarketpaul</dc:creator>
      <dc:date>2011-05-12T16:04:29Z</dc:date>
    </item>
    <item>
      <title>Displaying count of blank Emails</title>
      <link>https://community.qlik.com/t5/QlikView/Displaying-count-of-blank-Emails/m-p/295166#M587748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; you should flag them when you load your data .&lt;/P&gt;&lt;P&gt;Exemple&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the script &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if (Email = '&amp;lt;NotAnswered&amp;gt;' , 1 , 0 ) as NotAnswered,&lt;/P&gt;&lt;P&gt;if (Email&amp;lt;&amp;gt;'﻿﻿&amp;lt;NotAnswered&amp;gt;', 1 , 0 ) as Answered&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then in your graphs , you sum the two values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Philippe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 May 2011 16:09:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Displaying-count-of-blank-Emails/m-p/295166#M587748</guid>
      <dc:creator />
      <dc:date>2011-05-12T16:09:16Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying count of blank Emails</title>
      <link>https://community.qlik.com/t5/QlikView/Displaying-count-of-blank-Emails/m-p/295167#M587749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That does help me isolate and total them up. In fact i adopted your idea here as i was forcing in the &lt;STRONG&gt;&amp;lt;Not Answered&amp;gt;&lt;/STRONG&gt; to make it selectable&lt;/P&gt;&lt;P&gt;&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"&gt;&lt;P&gt;Customer:&lt;/P&gt;&lt;P&gt;LOAD CustomerID, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(Len(Trim([Email Address])) = 0, 1, 0) as NoEmail,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(Len(Trim([Email Address])) &amp;lt;&amp;gt; 0, 1, 0) as EmailExists,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(Len(Trim([Email Address])) = 0, '&amp;lt;Not Answered&amp;gt;', [Email Address]) as Email&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM&lt;/P&gt;&lt;P&gt;CDSLayout.xls&lt;/P&gt;&lt;P&gt;(biff, embedded labels, table is [acs layout$]);&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So i can now show the totals in a Statistics box but i would like them to be able to select one of the totals so they can filter the data down to show all the people with or without an email address.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sadly a statistic box does not appear to be selectable &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 May 2011 11:52:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Displaying-count-of-blank-Emails/m-p/295167#M587749</guid>
      <dc:creator>haymarketpaul</dc:creator>
      <dc:date>2011-05-13T11:52:13Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying count of blank Emails</title>
      <link>https://community.qlik.com/t5/QlikView/Displaying-count-of-blank-Emails/m-p/295168#M587751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI, Paul&lt;/P&gt;&lt;P&gt;If you want to use it to make selection you could merge the fields&amp;nbsp; EmailExists and NoExists in a single one&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;Customer:&lt;/P&gt;&lt;P&gt;LOAD CustomerID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(Len(Trim([Email Address])) = 0, 1, 0) as NoEmail,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(Len(Trim([Email Address])) &amp;lt;&amp;gt; 0, 1, 0) as EmailExists,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(Len(Trim([Email Address])) &amp;lt;&amp;gt; 0, 'Exists', 'NoEmail') as Existence,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(Len(Trim([Email Address])) = 0, '&amp;lt;Not Answered&amp;gt;', [Email Address]) as Email&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM&lt;/P&gt;&lt;P&gt;CDSLayout.xls&lt;/P&gt;&lt;P&gt;(biff, embedded labels, table is [acs layout$]);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Erich&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 May 2011 12:58:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Displaying-count-of-blank-Emails/m-p/295168#M587751</guid>
      <dc:creator>erichshiino</dc:creator>
      <dc:date>2011-05-13T12:58:00Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying count of blank Emails</title>
      <link>https://community.qlik.com/t5/QlikView/Displaying-count-of-blank-Emails/m-p/295169#M587754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Brilliant - thanks Erich that's perfect&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 May 2011 13:11:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Displaying-count-of-blank-Emails/m-p/295169#M587754</guid>
      <dc:creator>haymarketpaul</dc:creator>
      <dc:date>2011-05-13T13:11:14Z</dc:date>
    </item>
  </channel>
</rss>

