<?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: Conditional Filter in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Conditional-Filter/m-p/1521017#M726083</link>
    <description>Thanks A lot It worked</description>
    <pubDate>Fri, 14 Dec 2018 12:06:09 GMT</pubDate>
    <dc:creator>harithareddy</dc:creator>
    <dc:date>2018-12-14T12:06:09Z</dc:date>
    <item>
      <title>Conditional Filter</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-Filter/m-p/1520873#M726079</link>
      <description>&lt;P&gt;Hello Community,&lt;/P&gt;
&lt;P&gt;I have a table,&lt;/P&gt;
&lt;P&gt;Table:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;Type, Field, IDs&lt;BR /&gt;A, S, 1&lt;BR /&gt;A, S, 3&lt;BR /&gt;A, S, 2&lt;BR /&gt;A, S, 5&lt;BR /&gt;A, , 56&lt;BR /&gt;A, , 34&lt;BR /&gt;B, S, 57&lt;BR /&gt;B, S, 58&lt;BR /&gt;B, S, 59&lt;BR /&gt;B, S, 23&lt;BR /&gt;B, , 46&lt;BR /&gt;];&lt;BR /&gt;&lt;BR /&gt;Table1:&lt;BR /&gt;Load *,&lt;/P&gt;
&lt;P&gt;IF(Type='A'and Field='S','C',Type) as New_Type&lt;BR /&gt;&lt;BR /&gt;Resident Table;&lt;/P&gt;
&lt;P&gt;Drop table Table;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I need to create a List box on Type column in out put i need to get as A,B,C the condition for c,When Type = 'A' and &lt;SPAN&gt;Field&lt;/SPAN&gt;='S' and i have a pie chart in dashboard which will show the count of ID's ,When i click the the type A in new_type filter the count is showing as 2( it is showing the records for which the type is A and &amp;nbsp;fiels is not 'S')but i need to get 6(all the records for the type A).&lt;/P&gt;
&lt;P&gt;PLease find the attchment for the same.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance for the help&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 04:57:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-Filter/m-p/1520873#M726079</guid>
      <dc:creator>harithareddy</dc:creator>
      <dc:date>2024-11-16T04:57:41Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional Filter</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-Filter/m-p/1520891#M726080</link>
      <description>&lt;P&gt;It sounds like you want a value to be two values at once. New_Type should be A because Type is A and New_Type should also be C because Type is A and Field is S. That simple won't work in this universe. It's either one or the other, never both at the same time.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Dec 2018 09:15:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-Filter/m-p/1520891#M726080</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2018-12-14T09:15:28Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional Filter</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-Filter/m-p/1520910#M726081</link>
      <description>Thanks for Quick reply,&lt;BR /&gt;Type C is a subset of A.&lt;BR /&gt;A contains the records for both field S and null but C should show the records only for the field as S.&lt;BR /&gt;I have a built 3 piviot table based on the types now my requirement is to show a chart for all the types user will select the type and check the count</description>
      <pubDate>Fri, 14 Dec 2018 09:34:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-Filter/m-p/1520910#M726081</guid>
      <dc:creator>harithareddy</dc:creator>
      <dc:date>2018-12-14T09:34:50Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional Filter</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-Filter/m-p/1520924#M726082</link>
      <description>&lt;P&gt;Try creating a new table with a new field that links to the IDs in Table1.&lt;/P&gt;&lt;P&gt;Table:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;Type, Field, IDs&lt;BR /&gt;A, S, 1&lt;BR /&gt;A, S, 3&lt;BR /&gt;A, S, 2&lt;BR /&gt;A, S, 5&lt;BR /&gt;A, , 56&lt;BR /&gt;A, , 34&lt;BR /&gt;B, S, 57&lt;BR /&gt;B, S, 58&lt;BR /&gt;B, S, 59&lt;BR /&gt;B, S, 23&lt;BR /&gt;B, , 46&lt;BR /&gt;];&lt;BR /&gt;&lt;BR /&gt;Table1:&lt;BR /&gt;Load *,&lt;/P&gt;&lt;P&gt;IF(Type='A'and Field='S','C',Type) as New_Type&lt;BR /&gt;&lt;BR /&gt;Resident Table;&lt;/P&gt;&lt;P&gt;Drop table Table;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NewerType:&lt;BR /&gt;LOAD DISTINCT&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Type as Newer_Type,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; IDs&lt;BR /&gt;RESIDENT Table1;&lt;/P&gt;&lt;P&gt;CONCATENATE (Table1)&lt;/P&gt;&lt;P&gt;LOAD DISTINCT&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; New_Type as Newer_Type,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; IDs&lt;BR /&gt;RESIDENT Table1;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Dec 2018 09:55:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-Filter/m-p/1520924#M726082</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2018-12-14T09:55:51Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional Filter</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-Filter/m-p/1521017#M726083</link>
      <description>Thanks A lot It worked</description>
      <pubDate>Fri, 14 Dec 2018 12:06:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-Filter/m-p/1521017#M726083</guid>
      <dc:creator>harithareddy</dc:creator>
      <dc:date>2018-12-14T12:06:09Z</dc:date>
    </item>
  </channel>
</rss>

