<?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 dual function in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/dual-function/m-p/1367659#M418362</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;dual(replace(Class(field,3),'&amp;lt;= x &amp;lt;','-'),Class(field,3)) &lt;/P&gt;&lt;P&gt;i have values from 0 to 9 in my field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so now whats happening with above statement is :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;there are 3 groups created &lt;/P&gt;&lt;P&gt;0-3&lt;/P&gt;&lt;P&gt;3-6&lt;/P&gt;&lt;P&gt;6-9&lt;/P&gt;&lt;P&gt;9-12&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what i want is groups till 6-9 only &lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;0-3&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;3-6&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;6-9&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;how i shud do it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Jul 2017 13:10:43 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2017-07-25T13:10:43Z</dc:date>
    <item>
      <title>dual function</title>
      <link>https://community.qlik.com/t5/QlikView/dual-function/m-p/1367659#M418362</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;dual(replace(Class(field,3),'&amp;lt;= x &amp;lt;','-'),Class(field,3)) &lt;/P&gt;&lt;P&gt;i have values from 0 to 9 in my field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so now whats happening with above statement is :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;there are 3 groups created &lt;/P&gt;&lt;P&gt;0-3&lt;/P&gt;&lt;P&gt;3-6&lt;/P&gt;&lt;P&gt;6-9&lt;/P&gt;&lt;P&gt;9-12&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what i want is groups till 6-9 only &lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;0-3&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;3-6&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;6-9&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;how i shud do it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jul 2017 13:10:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/dual-function/m-p/1367659#M418362</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-07-25T13:10:43Z</dc:date>
    </item>
    <item>
      <title>Re: dual function</title>
      <link>https://community.qlik.com/t5/QlikView/dual-function/m-p/1367660#M418363</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be make it like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If(field &amp;gt;= 0 and field &amp;lt;= 3, Dual('0-3', 1),&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(field &amp;lt;= 6, Dual('3-6', 2),&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(field &amp;lt;= 9, Dual('6-9', 3))))&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jul 2017 13:33:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/dual-function/m-p/1367660#M418363</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-07-25T13:33:59Z</dc:date>
    </item>
    <item>
      <title>Re: dual function</title>
      <link>https://community.qlik.com/t5/QlikView/dual-function/m-p/1367661#M418364</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;if(field&amp;gt;0 and field &amp;lt;3, 0-3,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;if(field&amp;gt;=3 and field&amp;lt;6,3-6,6-9)) as Buckets&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Class would not work for your requirement because class(field,3) would evaluate &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;0&amp;lt;=x&amp;lt;3&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;3&amp;lt;=x&amp;lt;6&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;6&amp;lt;=x&amp;lt;9&amp;nbsp;&amp;nbsp; Less than 9 so it gives extra value &lt;/STRONG&gt;&lt;/STRONG&gt;&lt;STRONG style="font-size: 10pt;"&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;9&amp;lt;=x&amp;lt;12&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jul 2017 13:35:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/dual-function/m-p/1367661#M418364</guid>
      <dc:creator>aarkay29</dc:creator>
      <dc:date>2017-07-25T13:35:12Z</dc:date>
    </item>
    <item>
      <title>Re: dual function</title>
      <link>https://community.qlik.com/t5/QlikView/dual-function/m-p/1367662#M418365</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Class() creates a value where each of the inputs can be between a range. The higher bound, in this case 9, will be in the range 9-12, if you want to only display 0-9, you should convert in the value to 8 for the sake of the function, so the upper bound is never higher than 9 yet the class 6-9 returns everything including 9:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Replace(Class(If(field = 9, 8, field), 3),'&amp;lt;= x &amp;lt;','-')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jul 2017 13:35:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/dual-function/m-p/1367662#M418365</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2017-07-25T13:35:30Z</dc:date>
    </item>
    <item>
      <title>Re: dual function</title>
      <link>https://community.qlik.com/t5/QlikView/dual-function/m-p/1367663#M418366</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;my requirement is like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;0&lt;/P&gt;&lt;P&gt;1-3&lt;/P&gt;&lt;P&gt;4-6&lt;/P&gt;&lt;P&gt;7-9&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Jul 2017 08:46:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/dual-function/m-p/1367663#M418366</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-07-26T08:46:22Z</dc:date>
    </item>
    <item>
      <title>Re: dual function</title>
      <link>https://community.qlik.com/t5/QlikView/dual-function/m-p/1367664#M418367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i also want to have a drill down feature &lt;/P&gt;&lt;P&gt;if i click on range 1-3 so it should show me the drill down values&lt;/P&gt;&lt;P&gt;of 1,2 and 3 &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Jul 2017 09:48:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/dual-function/m-p/1367664#M418367</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-07-26T09:48:21Z</dc:date>
    </item>
    <item>
      <title>Re: dual function</title>
      <link>https://community.qlik.com/t5/QlikView/dual-function/m-p/1367665#M418368</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the attached file....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And please try to be clear with your requirement... the reason I say this is because first you wanted groups of 0-3, 3-6, 6-9 and then you changed it to 0, 1-3, 4-6, 7-9....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Sunny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Jul 2017 11:03:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/dual-function/m-p/1367665#M418368</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-07-26T11:03:21Z</dc:date>
    </item>
    <item>
      <title>Re: dual function</title>
      <link>https://community.qlik.com/t5/QlikView/dual-function/m-p/1367666#M418369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks,i got the grouping but can you please help how i should get the view like:&lt;/P&gt;&lt;P&gt;if i click on any of the range it should show me all the values in that range&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;suppose its&lt;/P&gt;&lt;P&gt;3-6&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i should be able to see&lt;/P&gt;&lt;P&gt;3 4 5 6 values&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Jul 2017 11:21:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/dual-function/m-p/1367666#M418369</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-07-26T11:21:36Z</dc:date>
    </item>
    <item>
      <title>Re: dual function</title>
      <link>https://community.qlik.com/t5/QlikView/dual-function/m-p/1367667#M418370</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you even open my application? &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt; Please check the application where I have created a drill down group which does exactly what you want.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Jul 2017 11:24:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/dual-function/m-p/1367667#M418370</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-07-26T11:24:19Z</dc:date>
    </item>
    <item>
      <title>Re: dual function</title>
      <link>https://community.qlik.com/t5/QlikView/dual-function/m-p/1367668#M418371</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks so much&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but how is this working?&lt;/P&gt;&lt;P&gt;can u please help for the same&lt;/P&gt;&lt;P&gt;and also i have a cyclic group and a combo chart,will it work the same way?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Jul 2017 11:54:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/dual-function/m-p/1367668#M418371</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-07-26T11:54:19Z</dc:date>
    </item>
    <item>
      <title>Re: dual function</title>
      <link>https://community.qlik.com/t5/QlikView/dual-function/m-p/1367669#M418372</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not sure what you mean when you say how is this working? Can you elaborate on what exactly you don't understand?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, it should work with combo chart&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Jul 2017 11:56:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/dual-function/m-p/1367669#M418372</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-07-26T11:56:44Z</dc:date>
    </item>
    <item>
      <title>Re: dual function</title>
      <link>https://community.qlik.com/t5/QlikView/dual-function/m-p/1367670#M418373</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks sunny so much,it resolved my issue&lt;/P&gt;&lt;P&gt;thanks a lot,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just one doubt please?&lt;/P&gt;&lt;P&gt;though its working fine&amp;nbsp; but actually i have 5 fields like this having the same ranges(0-9),&lt;/P&gt;&lt;P&gt;so earlier i was creating a cyclic group to show it as a dimension ,&lt;/P&gt;&lt;P&gt;but now in this case how i shud achieve it ,though i still want this drill down feature for all the fields as well &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance,&lt;/P&gt;&lt;P&gt;sorry for troubling,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Jul 2017 12:33:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/dual-function/m-p/1367670#M418373</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-07-26T12:33:09Z</dc:date>
    </item>
    <item>
      <title>Re: dual function</title>
      <link>https://community.qlik.com/t5/QlikView/dual-function/m-p/1367671#M418374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not sure I understand the final goal you want... would you be able to share a sample with the expected output?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Jul 2017 12:34:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/dual-function/m-p/1367671#M418374</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-07-26T12:34:59Z</dc:date>
    </item>
    <item>
      <title>Re: dual function</title>
      <link>https://community.qlik.com/t5/QlikView/dual-function/m-p/1367672#M418375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have fields:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;fields&amp;nbsp;&amp;nbsp;&amp;nbsp; values&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;a&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0,1,2,3.........9 &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;b&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-size: 13.3333px;"&gt; 0,1,2,3.........9 &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;c&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-size: 13.3333px;"&gt; 0,1,2,3.........9 &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;d&amp;nbsp;&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="font-size: 13.3333px;"&gt; 0,1,2,3.........9 &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;e&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&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="font-size: 13.3333px;"&gt; 0,1,2,3.........9 &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;somehow these fields are related &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so i want to group it together &lt;/P&gt;&lt;P&gt;i created a cyclic group but also need tthe above drill down functionality,would it be possible in the same chart &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Jul 2017 13:21:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/dual-function/m-p/1367672#M418375</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-07-26T13:21:50Z</dc:date>
    </item>
    <item>
      <title>Re: dual function</title>
      <link>https://community.qlik.com/t5/QlikView/dual-function/m-p/1367673#M418376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;somehow these fields are related&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;You are hilarious.... anyways, I think we are not getting anywhere with this discussion. I will let someone else help you out here &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All the best&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Jul 2017 13:29:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/dual-function/m-p/1367673#M418376</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-07-26T13:29:39Z</dc:date>
    </item>
  </channel>
</rss>

