<?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: No display data problem in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/No-display-data-problem/m-p/474061#M177069</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;thanks for your kindly reply... but one think i forgot to say is the dimension of my chart in this case is month ....&lt;/P&gt;&lt;P&gt;and for each month i want to show the count of customer that the previous flag for them is 0 and current flag is 1 ... actually this diagram suppose to show churn ... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.. &lt;/P&gt;&lt;P&gt;saha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 11 Nov 2013 06:46:32 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-11-11T06:46:32Z</dc:date>
    <item>
      <title>No display data problem</title>
      <link>https://community.qlik.com/t5/QlikView/No-display-data-problem/m-p/474058#M177066</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;i have a problem in expression...i have a table named "A". &lt;/P&gt;&lt;P&gt;in that i have a monthly record.. 3 column one of them is flag and one of them is customer id and month code... &lt;/P&gt;&lt;P&gt;i want to have chart with month dim and in that show count of customer that the flag for them is 0 in current month and 1 in previous month...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i really want the answer ... &lt;/P&gt;&lt;P&gt;please help me in this situation... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;sahar &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Nov 2013 06:07:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/No-display-data-problem/m-p/474058#M177066</guid>
      <dc:creator />
      <dc:date>2013-11-04T06:07:53Z</dc:date>
    </item>
    <item>
      <title>Re: No display data problem</title>
      <link>https://community.qlik.com/t5/QlikView/No-display-data-problem/m-p/474059#M177067</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try expressions like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Count( Distinct If( Flag=0, [Customer ID]))&amp;nbsp;&amp;nbsp;&amp;nbsp; // For Current month&lt;/P&gt;&lt;P&gt;=Count( Distinct If( Flag=1, [Customer ID]))&amp;nbsp;&amp;nbsp;&amp;nbsp; // For Previous month&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or, using set, like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Count( {&amp;lt;Flag={1}&amp;gt;} distinct [Customer ID])&lt;/P&gt;&lt;P&gt;=Count( {&amp;lt;Flag={0}&amp;gt;} distinct [Customer ID])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the dimension Month field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Nov 2013 06:24:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/No-display-data-problem/m-p/474059#M177067</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2013-11-04T06:24:59Z</dc:date>
    </item>
    <item>
      <title>Re: No display data problem</title>
      <link>https://community.qlik.com/t5/QlikView/No-display-data-problem/m-p/474060#M177068</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Sahar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please find the attached document.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;I used the below expressions to get the count&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Count&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;({$&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Flag&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;={0}&amp;gt;}&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;CustomerID&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Count&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;({$&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Flag&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;={1}&amp;gt;}&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;CustomerID&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps! Let me know incase of any concerns/questions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sibin Jacob. C&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Nov 2013 06:48:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/No-display-data-problem/m-p/474060#M177068</guid>
      <dc:creator>sibin_jacob</dc:creator>
      <dc:date>2013-11-04T06:48:08Z</dc:date>
    </item>
    <item>
      <title>Re: No display data problem</title>
      <link>https://community.qlik.com/t5/QlikView/No-display-data-problem/m-p/474061#M177069</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;thanks for your kindly reply... but one think i forgot to say is the dimension of my chart in this case is month ....&lt;/P&gt;&lt;P&gt;and for each month i want to show the count of customer that the previous flag for them is 0 and current flag is 1 ... actually this diagram suppose to show churn ... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.. &lt;/P&gt;&lt;P&gt;saha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Nov 2013 06:46:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/No-display-data-problem/m-p/474061#M177069</guid>
      <dc:creator />
      <dc:date>2013-11-11T06:46:32Z</dc:date>
    </item>
  </channel>
</rss>

