<?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 to create a new filter based on another filter values in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/How-to-create-a-new-filter-based-on-another-filter-values/m-p/1722986#M55017</link>
    <description>&lt;P&gt;Hi Treseco,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much for your response but the above requirement is different&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Satya&lt;/P&gt;</description>
    <pubDate>Mon, 29 Jun 2020 06:23:28 GMT</pubDate>
    <dc:creator>SatyaPaleti</dc:creator>
    <dc:date>2020-06-29T06:23:28Z</dc:date>
    <item>
      <title>How to create a new filter based on another filter values</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-create-a-new-filter-based-on-another-filter-values/m-p/1722965#M55014</link>
      <description>&lt;P&gt;Hi Everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have small issue can you please help me to resolve this Issue.&lt;/P&gt;&lt;P&gt;I have following countries in field Country&lt;/P&gt;&lt;P&gt;1. India&lt;/P&gt;&lt;P&gt;2. U.S.A&lt;/P&gt;&lt;P&gt;3. Brazil&lt;/P&gt;&lt;P&gt;4. Europe&lt;/P&gt;&lt;P&gt;5. England&lt;/P&gt;&lt;P&gt;6.Malaysia&lt;/P&gt;&lt;P&gt;I need to Create a new field based on these countries. Field name is Country Category&lt;/P&gt;&lt;P&gt;so if country India, Brazil, U.S.A then we have to show Category A&lt;/P&gt;&lt;P&gt;so if country Europe, England, Malaysia then we have to show Category B&lt;/P&gt;&lt;P&gt;If all the Countries&amp;nbsp; it should be Categories ALL&lt;/P&gt;&lt;P&gt;in Country Category Field i will have 3 Values Category A, Category B &amp;amp; Category ALL.&lt;/P&gt;&lt;P&gt;if User selects Category A then in the filter Country Only India, Brazil, U.S.A&amp;nbsp; should select&lt;/P&gt;&lt;P&gt;if User selects Category B then in the filter Country Only England, Europe, Malaysia&amp;nbsp; should select&lt;/P&gt;&lt;P&gt;if User Selects Category ALL then all the Countries should select&lt;/P&gt;&lt;P&gt;I have written like below&lt;/P&gt;&lt;P&gt;if( Country = 'India' or Country = 'Brazil' or&amp;nbsp; Country = 'U.S.A', 'Category 1',&lt;/P&gt;&lt;P&gt;&amp;nbsp;if( Country = 'England' or Country = 'Europe' or&amp;nbsp; Country = 'Malaysia', 'Category 2', 'Category ALL'))&lt;/P&gt;&lt;P&gt;but I am getting only Category A &amp;amp; Category B in filter. Can some one suggest how to Include Category ALL also&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Satya&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 18:26:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-create-a-new-filter-based-on-another-filter-values/m-p/1722965#M55014</guid>
      <dc:creator>SatyaPaleti</dc:creator>
      <dc:date>2024-11-16T18:26:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a new filter based on another filter values</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-create-a-new-filter-based-on-another-filter-values/m-p/1722969#M55015</link>
      <description>&lt;P&gt;For 'All' you need to reload the country field one more time. Try like:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;t1:
Load *,
	If(Match(Country, 'India', 'China'), 'Asia',
		if(Match(Country, 'UK', 'FRA'), 'Europe', 'USA')) as Continent Inline [
Country
India,
USA
UK
China
FRA
];
Load
	Country,
	'All' as Continent
Resident t1;&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 29 Jun 2020 05:23:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-create-a-new-filter-based-on-another-filter-values/m-p/1722969#M55015</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2020-06-29T05:23:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a new filter based on another filter values</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-create-a-new-filter-based-on-another-filter-values/m-p/1722986#M55017</link>
      <description>&lt;P&gt;Hi Treseco,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much for your response but the above requirement is different&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Satya&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jun 2020 06:23:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-create-a-new-filter-based-on-another-filter-values/m-p/1722986#M55017</guid>
      <dc:creator>SatyaPaleti</dc:creator>
      <dc:date>2020-06-29T06:23:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a new filter based on another filter values</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-create-a-new-filter-based-on-another-filter-values/m-p/1722990#M55018</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/46656"&gt;@SatyaPaleti&lt;/a&gt;&amp;nbsp;wrote:&lt;P&gt;Thank you so much for your response but the above requirement is different&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Would you mind explaining a bit more ? If you have tried the solution I proposed - please try to explain the differences in it's light.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jun 2020 06:38:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-create-a-new-filter-based-on-another-filter-values/m-p/1722990#M55018</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2020-06-29T06:38:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a new filter based on another filter values</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-create-a-new-filter-based-on-another-filter-values/m-p/1722995#M55020</link>
      <description>&lt;P&gt;Hi Tresco,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to create a filter based on Countries.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have 6 Countries&lt;/P&gt;&lt;P&gt;1. India&lt;/P&gt;&lt;P&gt;2. USA&lt;/P&gt;&lt;P&gt;3.England&lt;/P&gt;&lt;P&gt;4. Brazil&lt;/P&gt;&lt;P&gt;5.Malaysia&lt;/P&gt;&lt;P&gt;6. Europe&lt;/P&gt;&lt;P&gt;if I click on Category A then India, USA&amp;nbsp; &amp;amp; England should select&lt;/P&gt;&lt;P&gt;if I click on Category B then Brazil, Malaysia &amp;nbsp;&amp;amp; Europe should select&lt;/P&gt;&lt;P&gt;If i click Category C then all the countries should select&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Satya&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jun 2020 07:08:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-create-a-new-filter-based-on-another-filter-values/m-p/1722995#M55020</guid>
      <dc:creator>SatyaPaleti</dc:creator>
      <dc:date>2020-06-29T07:08:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a new filter based on another filter values</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-create-a-new-filter-based-on-another-filter-values/m-p/1723006#M55021</link>
      <description>&lt;P&gt;I guess it is not much different, you just need to change the values with same logic. Try:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;t1:
Load *,
	If(Match(Country, 'India', 'USA', 'England'), 'Category 1',
		if(Match(Country, 'Brazil', 'Malaysia', 'Europe'), 'Category2')) as NewField Inline [
Country
India
USA
England
Brazil
Malaysia
Europe
];
Load
	Country,
	'Category All' as NewField
Resident t1;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jun 2020 07:37:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-create-a-new-filter-based-on-another-filter-values/m-p/1723006#M55021</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2020-06-29T07:37:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a new filter based on another filter values</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-create-a-new-filter-based-on-another-filter-values/m-p/1724113#M55106</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think you should create these categories in your script and then use buttons + variables to select the groups you want&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jul 2020 13:52:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-create-a-new-filter-based-on-another-filter-values/m-p/1724113#M55106</guid>
      <dc:creator>Hakim-A</dc:creator>
      <dc:date>2020-07-01T13:52:06Z</dc:date>
    </item>
  </channel>
</rss>

