<?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: How can I create a filter based on the result of one column in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-can-I-create-a-filter-based-on-the-result-of-one-column/m-p/1111114#M898930</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am new on QlikView, can you please be more specific. where can I set those expressions in the general tab?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 21 Jul 2016 12:31:21 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2016-07-21T12:31:21Z</dc:date>
    <item>
      <title>How can I create a filter based on the result of one column</title>
      <link>https://community.qlik.com/t5/QlikView/How-can-I-create-a-filter-based-on-the-result-of-one-column/m-p/1111109#M898925</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to create a filter on QlikView, for example I have the following data in one column: 1,2,3,2,4,5,6,4,2,5,6,9,6,3,8,6,9,9,10&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The filter should group the information as the following: &lt;/P&gt;&lt;P&gt;If value &amp;gt;=3, A&lt;/P&gt;&lt;P&gt;If value &amp;gt;3 or &amp;lt;=6, B&lt;/P&gt;&lt;P&gt;If value &amp;gt;6, C&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will like to see only these 3 options (A,B,C)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have create a list box and in the expressions I have set: &lt;/P&gt;&lt;P&gt;If (value &amp;gt;=3,'A', if (value &amp;gt;3 or value &amp;lt;=6,'B', if (value &amp;gt;6,'C')))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is that instead of show only the values A, B, or C, it displayed all the values in the field and next to each value the result, for example: &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;1 - A&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;2 - A&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;3 - A&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;2 - A&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;4 - B&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;5 - B&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;10 - C&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Is there a way to instead of have all the values, only display the 3 options????&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-can-I-create-a-filter-based-on-the-result-of-one-column/m-p/1111109#M898925</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: How can I create a filter based on the result of one column</title>
      <link>https://community.qlik.com/t5/QlikView/How-can-I-create-a-filter-based-on-the-result-of-one-column/m-p/1111110#M898926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why don't you create this in the script itself:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD value,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp;&amp;nbsp; If(value &amp;gt; 6, 'C',&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #ff0000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(value &amp;gt; 3, 'B', 'A')) as Group&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or just try this as your list box expression:&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG style="color: #ff0000;"&gt;If(value &amp;gt; 6, 'C', &lt;/STRONG&gt;&lt;STRONG style="color: #ff0000;"&gt;If(value &amp;gt; 3, 'B', 'A'))&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jul 2016 19:35:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-can-I-create-a-filter-based-on-the-result-of-one-column/m-p/1111110#M898926</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-07-20T19:35:30Z</dc:date>
    </item>
    <item>
      <title>Re: How can I create a filter based on the result of one column</title>
      <link>https://community.qlik.com/t5/QlikView/How-can-I-create-a-filter-based-on-the-result-of-one-column/m-p/1111111#M898927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this out&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/132005_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jul 2016 19:38:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-can-I-create-a-filter-based-on-the-result-of-one-column/m-p/1111111#M898927</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-07-20T19:38:29Z</dc:date>
    </item>
    <item>
      <title>Re: How can I create a filter based on the result of one column</title>
      <link>https://community.qlik.com/t5/QlikView/How-can-I-create-a-filter-based-on-the-result-of-one-column/m-p/1111112#M898928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This does not work for me &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/plain.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is what I got: &lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/132011_Capture.JPG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;This is the the expression that I am using: &lt;/P&gt;&lt;P&gt;If(DaysEscalated &amp;gt; 90, '90 + Days', If(DaysEscalated &amp;gt; 60, '60 to 90 Days', '1 to 60 Days')) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have checked your qlikview file but I am not sure where do you set that, can you please show me the steps to configure it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will appreciate that. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jul 2016 20:38:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-can-I-create-a-filter-based-on-the-result-of-one-column/m-p/1111112#M898928</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-07-20T20:38:17Z</dc:date>
    </item>
    <item>
      <title>Re: How can I create a filter based on the result of one column</title>
      <link>https://community.qlik.com/t5/QlikView/How-can-I-create-a-filter-based-on-the-result-of-one-column/m-p/1111113#M898929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you might be doing this on the expression tab, but you need to enter this expression on the general tab&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/132006_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jul 2016 20:45:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-can-I-create-a-filter-based-on-the-result-of-one-column/m-p/1111113#M898929</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-07-20T20:45:11Z</dc:date>
    </item>
    <item>
      <title>Re: How can I create a filter based on the result of one column</title>
      <link>https://community.qlik.com/t5/QlikView/How-can-I-create-a-filter-based-on-the-result-of-one-column/m-p/1111114#M898930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am new on QlikView, can you please be more specific. where can I set those expressions in the general tab?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jul 2016 12:31:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-can-I-create-a-filter-based-on-the-result-of-one-column/m-p/1111114#M898930</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-07-21T12:31:21Z</dc:date>
    </item>
    <item>
      <title>Re: How can I create a filter based on the result of one column</title>
      <link>https://community.qlik.com/t5/QlikView/How-can-I-create-a-filter-based-on-the-result-of-one-column/m-p/1111115#M898931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Click on the drop down (circled in the below image) and then click on Expression:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/132049_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jul 2016 13:06:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-can-I-create-a-filter-based-on-the-result-of-one-column/m-p/1111115#M898931</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-07-21T13:06:19Z</dc:date>
    </item>
    <item>
      <title>Re: How can I create a filter based on the result of one column</title>
      <link>https://community.qlik.com/t5/QlikView/How-can-I-create-a-filter-based-on-the-result-of-one-column/m-p/1111116#M898932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IT WORKED!!!!! THANK YOU VERY MUCH!!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jul 2016 14:11:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-can-I-create-a-filter-based-on-the-result-of-one-column/m-p/1111116#M898932</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-07-21T14:11:29Z</dc:date>
    </item>
    <item>
      <title>Re: How can I create a filter based on the result of one column</title>
      <link>https://community.qlik.com/t5/QlikView/How-can-I-create-a-filter-based-on-the-result-of-one-column/m-p/1111117#M898933</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Roberto,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We're glad to see you got the solution you were looking for. Please take a moment to mark replies as correct or helpful, in order to give credit to those who helped you and to designate this thread as Answered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For more information, see &lt;A href="https://community.qlik.com/docs/DOC-14806"&gt;Qlik Community Tip: Marking Replies as Correct or Helpful&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Qlik Community Team&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jul 2016 16:45:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-can-I-create-a-filter-based-on-the-result-of-one-column/m-p/1111117#M898933</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-07-21T16:45:51Z</dc:date>
    </item>
    <item>
      <title>Re: How can I create a filter based on the result of one column</title>
      <link>https://community.qlik.com/t5/QlikView/How-can-I-create-a-filter-based-on-the-result-of-one-column/m-p/1111118#M898934</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Awesome, I am glad it finally worked out.&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>Thu, 21 Jul 2016 16:46:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-can-I-create-a-filter-based-on-the-result-of-one-column/m-p/1111118#M898934</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-07-21T16:46:07Z</dc:date>
    </item>
  </channel>
</rss>

