<?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: Comparing 2 fields in dimension for Filter - QlikSense in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Comparing-2-fields-in-dimension-for-Filter-QlikSense/m-p/1736301#M56281</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/46628"&gt;@sunny_talwar&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Thanks for the revert.&amp;nbsp;&lt;BR /&gt;No, they are not from same table otherwise I would have created the same flag .&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Other thing is if I am using a condition on column like below then also if someone selects value from column then each IF condition creates selection in the pane,&amp;nbsp;&lt;/P&gt;&lt;P&gt;If(getSelectedCount(A)=1 or getSelectedCount(C)=1, B)&lt;/P&gt;&lt;P&gt;If select Value from B then A &amp;amp; C filter will also get appear in the pane.&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Shubham&lt;/P&gt;</description>
    <pubDate>Mon, 17 Aug 2020 09:23:52 GMT</pubDate>
    <dc:creator>Shubham_D</dc:creator>
    <dc:date>2020-08-17T09:23:52Z</dc:date>
    <item>
      <title>Comparing 2 fields in dimension for Filter - QlikSense</title>
      <link>https://community.qlik.com/t5/App-Development/Comparing-2-fields-in-dimension-for-Filter-QlikSense/m-p/1729997#M55669</link>
      <description>&lt;P&gt;Hi Qlikers,&lt;/P&gt;&lt;P&gt;I have calculated dimension in filter object as below,&lt;/P&gt;&lt;P&gt;If(Column1= column2, column1)&lt;/P&gt;&lt;P&gt;It's working fine, but the issue is when I select anything in Column1 filter, Column2 also comes in FIlter pane as well.&lt;/P&gt;&lt;P&gt;How to ignore this, also I am not been able to compare the same in script as both are from different tables and had some another relations.&lt;/P&gt;&lt;P&gt;Please help.&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/46628"&gt;@sunny_talwar&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/6148"&gt;@rwunderlich&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Rgdsm&lt;/P&gt;&lt;P&gt;Shubham&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 01:49:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Comparing-2-fields-in-dimension-for-Filter-QlikSense/m-p/1729997#M55669</guid>
      <dc:creator>Shubham_D</dc:creator>
      <dc:date>2024-11-16T01:49:29Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing 2 fields in dimension for Filter - QlikSense</title>
      <link>https://community.qlik.com/t5/App-Development/Comparing-2-fields-in-dimension-for-Filter-QlikSense/m-p/1731744#M55844</link>
      <description>&lt;P&gt;Are they both coming from the same table? If they are why not create a new field in the script&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;If(Column1 = Column2, Column1) as New_Column1&lt;/LI-CODE&gt;&lt;P&gt;and then use this as your filter object. You can also use it to create a flag and then use the flag in your filter pane. Something like this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;If(Column1 = Column2, 1, 0) as Flag&lt;/LI-CODE&gt;&lt;P&gt;and then a filter object like this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Aggr(
    Only({&amp;lt;Flag = {1}&amp;gt;} Column1)
, Column1)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jul 2020 12:42:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Comparing-2-fields-in-dimension-for-Filter-QlikSense/m-p/1731744#M55844</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2020-07-29T12:42:34Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing 2 fields in dimension for Filter - QlikSense</title>
      <link>https://community.qlik.com/t5/App-Development/Comparing-2-fields-in-dimension-for-Filter-QlikSense/m-p/1736301#M56281</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/46628"&gt;@sunny_talwar&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Thanks for the revert.&amp;nbsp;&lt;BR /&gt;No, they are not from same table otherwise I would have created the same flag .&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Other thing is if I am using a condition on column like below then also if someone selects value from column then each IF condition creates selection in the pane,&amp;nbsp;&lt;/P&gt;&lt;P&gt;If(getSelectedCount(A)=1 or getSelectedCount(C)=1, B)&lt;/P&gt;&lt;P&gt;If select Value from B then A &amp;amp; C filter will also get appear in the pane.&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Shubham&lt;/P&gt;</description>
      <pubDate>Mon, 17 Aug 2020 09:23:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Comparing-2-fields-in-dimension-for-Filter-QlikSense/m-p/1736301#M56281</guid>
      <dc:creator>Shubham_D</dc:creator>
      <dc:date>2020-08-17T09:23:52Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing 2 fields in dimension for Filter - QlikSense</title>
      <link>https://community.qlik.com/t5/App-Development/Comparing-2-fields-in-dimension-for-Filter-QlikSense/m-p/1736425#M56304</link>
      <description>&lt;P&gt;I am not sure I know how this can be handled. May be someone else might know&lt;/P&gt;</description>
      <pubDate>Mon, 17 Aug 2020 15:02:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Comparing-2-fields-in-dimension-for-Filter-QlikSense/m-p/1736425#M56304</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2020-08-17T15:02:46Z</dc:date>
    </item>
  </channel>
</rss>

