<?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 newbie data presentation in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/newbie-data-presentation/m-p/209540#M1209071</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i think my qv skills have regressed since i've used it last. having trouble doing something basic right now i think, please advise? my entire data set is as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;account,start_dt,term_dt&lt;BR /&gt;1234,1/1/2010,1/11/2010&lt;BR /&gt;1233,12/31/2009,&lt;BR /&gt;1244,1/5/2010,1/15/2010&lt;BR /&gt;1257,1/10/2010,1/11/2010&lt;BR /&gt;1261,1/20/2010,1/24/2010&lt;/P&gt;&lt;P&gt;i am trying to do 2 things.&lt;/P&gt;&lt;P&gt;1. make a pie chart showing showing the percent of accounts still open vs. closed. i created a pie with&lt;/P&gt;&lt;P&gt;dimension: =if(IsNull(term_dt), 'Retained', 'Defected')&lt;/P&gt;&lt;P&gt;expression: =count(policy)&lt;/P&gt;&lt;P&gt;this is not working out, just making 1 big blue pie chart of all defected.&lt;/P&gt;&lt;P&gt;2. trying to make a bar graph with percentage accounts closed by days it took to close.&lt;/P&gt;&lt;P&gt;dimension: =term_dt-complaint_dt&lt;/P&gt;&lt;P&gt;expression: count(policy)/5&lt;/P&gt;&lt;P&gt;my problems here are&lt;/P&gt;&lt;P&gt;i.) i am not sure how to count 5 rather than hard code it and&lt;/P&gt;&lt;P&gt;ii.) i get a big chunk at the end for null if the account hasn't closed - can i remove it somehow?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 21 Jan 2010 02:31:27 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-01-21T02:31:27Z</dc:date>
    <item>
      <title>newbie data presentation</title>
      <link>https://community.qlik.com/t5/QlikView/newbie-data-presentation/m-p/209540#M1209071</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i think my qv skills have regressed since i've used it last. having trouble doing something basic right now i think, please advise? my entire data set is as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;account,start_dt,term_dt&lt;BR /&gt;1234,1/1/2010,1/11/2010&lt;BR /&gt;1233,12/31/2009,&lt;BR /&gt;1244,1/5/2010,1/15/2010&lt;BR /&gt;1257,1/10/2010,1/11/2010&lt;BR /&gt;1261,1/20/2010,1/24/2010&lt;/P&gt;&lt;P&gt;i am trying to do 2 things.&lt;/P&gt;&lt;P&gt;1. make a pie chart showing showing the percent of accounts still open vs. closed. i created a pie with&lt;/P&gt;&lt;P&gt;dimension: =if(IsNull(term_dt), 'Retained', 'Defected')&lt;/P&gt;&lt;P&gt;expression: =count(policy)&lt;/P&gt;&lt;P&gt;this is not working out, just making 1 big blue pie chart of all defected.&lt;/P&gt;&lt;P&gt;2. trying to make a bar graph with percentage accounts closed by days it took to close.&lt;/P&gt;&lt;P&gt;dimension: =term_dt-complaint_dt&lt;/P&gt;&lt;P&gt;expression: count(policy)/5&lt;/P&gt;&lt;P&gt;my problems here are&lt;/P&gt;&lt;P&gt;i.) i am not sure how to count 5 rather than hard code it and&lt;/P&gt;&lt;P&gt;ii.) i get a big chunk at the end for null if the account hasn't closed - can i remove it somehow?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jan 2010 02:31:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/newbie-data-presentation/m-p/209540#M1209071</guid>
      <dc:creator />
      <dc:date>2010-01-21T02:31:27Z</dc:date>
    </item>
    <item>
      <title>newbie data presentation</title>
      <link>https://community.qlik.com/t5/QlikView/newbie-data-presentation/m-p/209541#M1209072</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For your first problem of pie chart, you can use the dimension as:&lt;/P&gt;&lt;P&gt;=if(ord(term_dt)=0,'Retained','Defected')&lt;/P&gt;&lt;P&gt;the ord function returns the ASCII value , and the term_dt without value has ord 0.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jan 2010 08:32:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/newbie-data-presentation/m-p/209541#M1209072</guid>
      <dc:creator />
      <dc:date>2010-01-21T08:32:13Z</dc:date>
    </item>
    <item>
      <title>newbie data presentation</title>
      <link>https://community.qlik.com/t5/QlikView/newbie-data-presentation/m-p/209542#M1209073</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For your second problem:&lt;/P&gt;&lt;P&gt;To count the total number of accounts as 5, you can use count(total account)) instead of hard coding it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jan 2010 08:36:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/newbie-data-presentation/m-p/209542#M1209073</guid>
      <dc:creator />
      <dc:date>2010-01-21T08:36:42Z</dc:date>
    </item>
    <item>
      <title>newbie data presentation</title>
      <link>https://community.qlik.com/t5/QlikView/newbie-data-presentation/m-p/209543#M1209074</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks silky, some questions to follow up:&lt;BR /&gt;&lt;BR /&gt;1. what is wrong with my logic for #1? the logic is actually the same i suppose, but ord works while isnull doesn't. why is this - shouldn't isnull work just fine here? i come from a database way of thinking about things and i have a difficult time understanding qlikview when concepts like this that i think i'm doing correctly do not work out.&lt;BR /&gt;&lt;BR /&gt;2.&lt;BR /&gt;i.) for this one, total seems to be a special qlik keyword - how does it work? if i filter on accounts, will it only count the total of those that meet my filtered criteria? can i do something like total distinct account as well?&lt;BR /&gt;ii.) what about the null chunk for people that haven't terminated - i get a big bar at the end of leftovers, with no label on the x-axis. can i do something to hide this bar?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jan 2010 16:20:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/newbie-data-presentation/m-p/209543#M1209074</guid>
      <dc:creator />
      <dc:date>2010-01-25T16:20:21Z</dc:date>
    </item>
    <item>
      <title>newbie data presentation</title>
      <link>https://community.qlik.com/t5/QlikView/newbie-data-presentation/m-p/209544#M1209075</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sure, i ll explain you about the Isnull and ord, why ord workd and isnull doesnt.&lt;/P&gt;&lt;P&gt;In the data i checked that where you have left the Date field blank , it has taken it as blank and not Null. and the ASCII value of Null is 78. But it is taking a character with ASCII value 0.&lt;/P&gt;&lt;P&gt;So, in case you want to use the IsNull logic, then you should give the value as Null to blank fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jan 2010 05:43:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/newbie-data-presentation/m-p/209544#M1209075</guid>
      <dc:creator />
      <dc:date>2010-01-27T05:43:09Z</dc:date>
    </item>
    <item>
      <title>newbie data presentation</title>
      <link>https://community.qlik.com/t5/QlikView/newbie-data-presentation/m-p/209545#M1209076</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For your null bar in the chart, you can hide by suppressing null values,&lt;/P&gt;&lt;P&gt;Right click on the Chart, go to chart Properties and open the Dimension tab, right below the dimensions , you ll see check box for Suppress when value is null. It will not show null values&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jan 2010 05:46:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/newbie-data-presentation/m-p/209545#M1209076</guid>
      <dc:creator />
      <dc:date>2010-01-27T05:46:52Z</dc:date>
    </item>
    <item>
      <title>newbie data presentation</title>
      <link>https://community.qlik.com/t5/QlikView/newbie-data-presentation/m-p/209546#M1209077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sily, back to my second question -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=count(id)/count(total id)&lt;/P&gt;&lt;P&gt;this worked well, until i brought in more data. let's say id is account_id and i have another table that has 1 to many addresses for the account. i really only care about the count versus distinct ids now. how do i do this?&lt;/P&gt;&lt;P&gt;=count(id)/count(total distinct id) didn't have any effect. thoughts?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jan 2010 20:39:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/newbie-data-presentation/m-p/209546#M1209077</guid>
      <dc:creator />
      <dc:date>2010-01-28T20:39:34Z</dc:date>
    </item>
  </channel>
</rss>

