<?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 Filter second\another column based on list box values in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Filter-second-another-column-based-on-list-box-values/m-p/1449110#M802840</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. First requirement - Require a list box that will display 'Value1, 'Value2' and 'Value3' I should be able to select these values in the list box. How to achieve this in the list box?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. . On selection of value1, it should filter a column and search for Value1 in that column. Value1 could be part of large text present in this column. Similarly based on Value2 or Value3 selections in the list box it should search for Value1 and Value3 in that column which has large text content. Any rows that has Value1 content in that column should be filtered and data in the straight table and entire application should be filtered to these rows. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I link to make these list box selections to filter the second column that has large content based on the selections made in the list box&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If possible would like it trigger free as I am not sure it will work on Ajax client. If actions it is fine. As long as the solution works on accesspoint. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please share the syntax or steps. Even if using if statements it is fine. Please recommend best solution. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Early response appreciated. If only possible attach a file.&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>Filter second\another column based on list box values</title>
      <link>https://community.qlik.com/t5/QlikView/Filter-second-another-column-based-on-list-box-values/m-p/1449110#M802840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. First requirement - Require a list box that will display 'Value1, 'Value2' and 'Value3' I should be able to select these values in the list box. How to achieve this in the list box?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. . On selection of value1, it should filter a column and search for Value1 in that column. Value1 could be part of large text present in this column. Similarly based on Value2 or Value3 selections in the list box it should search for Value1 and Value3 in that column which has large text content. Any rows that has Value1 content in that column should be filtered and data in the straight table and entire application should be filtered to these rows. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I link to make these list box selections to filter the second column that has large content based on the selections made in the list box&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If possible would like it trigger free as I am not sure it will work on Ajax client. If actions it is fine. As long as the solution works on accesspoint. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please share the syntax or steps. Even if using if statements it is fine. Please recommend best solution. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Early response appreciated. If only possible attach a file.&lt;/P&gt;&lt;P&gt;Regards &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/Filter-second-another-column-based-on-list-box-values/m-p/1449110#M802840</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Filter second\another column based on list box values</title>
      <link>https://community.qlik.com/t5/QlikView/Filter-second-another-column-based-on-list-box-values/m-p/1449111#M802841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Urgently required&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Nov 2017 05:59:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filter-second-another-column-based-on-list-box-values/m-p/1449111#M802841</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-11-10T05:59:15Z</dc:date>
    </item>
    <item>
      <title>Re: Filter second\another column based on list box values</title>
      <link>https://community.qlik.com/t5/QlikView/Filter-second-another-column-based-on-list-box-values/m-p/1449112#M802842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perhaps this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ValueList('Value1', 'Value2', 'Value3')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In fact, In straight table you need to custom using this&lt;/P&gt;&lt;P&gt;If(ValueList('Value1', 'Value2', 'Value3') = 'Value1', Sum({&amp;lt;..&amp;gt;} Value1), &lt;/P&gt;&lt;P&gt;If(ValueList('Value1', 'Value2', 'Value3') = 'Value2', Sum({&amp;lt;..&amp;gt;} Value2), &lt;/P&gt;&lt;P&gt;If(ValueList('Value1', 'Value2', 'Value3') = 'Value3', Sum({&amp;lt;..&amp;gt;} Value3))))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Nov 2017 06:20:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filter-second-another-column-based-on-list-box-values/m-p/1449112#M802842</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-11-10T06:20:10Z</dc:date>
    </item>
  </channel>
</rss>

