<?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 Help needed with calculated dimensions in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Help-needed-with-calculated-dimensions/m-p/1327514#M28896</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I got a task to create a bar chart which should show number of open cases in each cluster. The clusters are based on how long the case has been open. The clusters are open for 0 days, open max 21 days (or 3 week) and open more than 3 weeks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At the moment my expression looks like this, but it's not for some reason display the cases which are closed "&lt;SPAN style="color: #000000; font-family: arial, sans-serif; font-size: 13px;"&gt;immediately&lt;/SPAN&gt;"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(STRIVE_TIME&amp;lt;=21,'&amp;lt;-3',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(STRIVE_TIME&amp;gt;21,'&amp;gt;3',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If (STRIVE_TIME &amp;lt;= 0, 'Zero' )))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have also tried to calculate the cluster based on difference of Registration Date and Strive Time, which is the way it "should" work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF (REGISTRATION_DATE&amp;nbsp; - STRIVE_TIME =&amp;gt; 21, 'Cluster &amp;gt;3')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately I can't share the application.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 03 Apr 2017 08:16:24 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2017-04-03T08:16:24Z</dc:date>
    <item>
      <title>Help needed with calculated dimensions</title>
      <link>https://community.qlik.com/t5/App-Development/Help-needed-with-calculated-dimensions/m-p/1327514#M28896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I got a task to create a bar chart which should show number of open cases in each cluster. The clusters are based on how long the case has been open. The clusters are open for 0 days, open max 21 days (or 3 week) and open more than 3 weeks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At the moment my expression looks like this, but it's not for some reason display the cases which are closed "&lt;SPAN style="color: #000000; font-family: arial, sans-serif; font-size: 13px;"&gt;immediately&lt;/SPAN&gt;"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(STRIVE_TIME&amp;lt;=21,'&amp;lt;-3',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(STRIVE_TIME&amp;gt;21,'&amp;gt;3',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If (STRIVE_TIME &amp;lt;= 0, 'Zero' )))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have also tried to calculate the cluster based on difference of Registration Date and Strive Time, which is the way it "should" work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF (REGISTRATION_DATE&amp;nbsp; - STRIVE_TIME =&amp;gt; 21, 'Cluster &amp;gt;3')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately I can't share the application.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Apr 2017 08:16:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Help-needed-with-calculated-dimensions/m-p/1327514#M28896</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-04-03T08:16:24Z</dc:date>
    </item>
    <item>
      <title>Re: Help needed with calculated dimensions</title>
      <link>https://community.qlik.com/t5/App-Development/Help-needed-with-calculated-dimensions/m-p/1327515#M28897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;=IF(STRIVE_TIME&amp;lt;=0,Dual('Zero',1),&lt;/P&gt;&lt;P&gt;IF(STRIVE_TIME&amp;lt;=21,Dual('&amp;lt;3',2),&lt;/P&gt;&lt;P&gt;Dual('&amp;gt;3',3)))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Apr 2017 08:20:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Help-needed-with-calculated-dimensions/m-p/1327515#M28897</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2017-04-03T08:20:45Z</dc:date>
    </item>
    <item>
      <title>Re: Help needed with calculated dimensions</title>
      <link>https://community.qlik.com/t5/App-Development/Help-needed-with-calculated-dimensions/m-p/1327516#M28898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you @Manish Kacchia for the quick reply.&lt;/P&gt;&lt;P&gt;I started to think that maybe the issue is not after in a way I've been trying to calculate these clusters but rather in the way the open cases are being defined. My results are looking slightly different than they are looking in Cognos, in&amp;nbsp; which the dashboard I'm supposed to create with Sense was originally made. Maybe there are some additional filters used in Cognos which I'm still not aware of.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Apr 2017 08:48:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Help-needed-with-calculated-dimensions/m-p/1327516#M28898</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-04-03T08:48:16Z</dc:date>
    </item>
  </channel>
</rss>

