<?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: Multiple parameter filtering in Qlik Replicate</title>
    <link>https://community.qlik.com/t5/Qlik-Replicate/Multiple-parameter-filtering/m-p/2477292#M12428</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/305084"&gt;@nahowe&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I'm not sure I fully understand the problem. Could you please provide an example of what you're trying to achieve?"&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;Regards,&lt;BR /&gt;Desmond&lt;/P&gt;</description>
    <pubDate>Wed, 21 Aug 2024 13:33:21 GMT</pubDate>
    <dc:creator>DesmondWOO</dc:creator>
    <dc:date>2024-08-21T13:33:21Z</dc:date>
    <item>
      <title>Multiple parameter filtering</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Multiple-parameter-filtering/m-p/2473306#M12182</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I have made and tested the validity of a filter that replicates everything EXCEPT the two parameters in the filter (Deletion by a static user). When running in a dev environment, however, there's no immediate replication when deleting something with my test user. It seems this filter works if it only consists of one condition vs two. I've tried both:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;$AR_H_USER != 'DigOneSvc' AND $AR_H_OPERATION != 'DELETE'&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;and&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;$AR_H_USER != 'DigOneSvc' OR $AR_H_OPERATION != 'DELETE'&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Thoughts?&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jul 2024 18:40:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Multiple-parameter-filtering/m-p/2473306#M12182</guid>
      <dc:creator>nahowe</dc:creator>
      <dc:date>2024-07-26T18:40:14Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple parameter filtering</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Multiple-parameter-filtering/m-p/2473329#M12184</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/305084"&gt;@nahowe&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for contacting Qlik community forum.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Yes, you are right filter cannot be applied for two conditions in same function.&lt;/P&gt;
&lt;P&gt;It is considering the very first condition.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;you can try with if else condition like below&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;CASE &lt;BR /&gt;WHEN $AR_H_USER != 'DigOneSvc' AND $AR_H_OPERATION != 'DELETE' THEN 'Name'&lt;BR /&gt;ELSE $Column_Name&lt;BR /&gt;END&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Sachin B&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 27 Jul 2024 04:36:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Multiple-parameter-filtering/m-p/2473329#M12184</guid>
      <dc:creator>SachinB</dc:creator>
      <dc:date>2024-07-27T04:36:33Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple parameter filtering</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Multiple-parameter-filtering/m-p/2476641#M12390</link>
      <description>&lt;P&gt;Thank you! Is this also the case and possible solution for transformations or can those take two conditions at once?&lt;/P&gt;</description>
      <pubDate>Fri, 16 Aug 2024 18:10:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Multiple-parameter-filtering/m-p/2476641#M12390</guid>
      <dc:creator>nahowe</dc:creator>
      <dc:date>2024-08-16T18:10:44Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple parameter filtering</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Multiple-parameter-filtering/m-p/2476655#M12391</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/305084"&gt;@nahowe&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Try to use Else condition instead&lt;/P&gt;
&lt;P&gt;For Eg,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;CASE&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;WHEN $AR_H_USER != 'DigOneSvc' AND $AR_H_OPERATION != 'DELETE' THEN 'Name'&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ELSE $Column_Name&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;END&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Deepak&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 17 Aug 2024 01:20:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Multiple-parameter-filtering/m-p/2476655#M12391</guid>
      <dc:creator>deepaksahirwar</dc:creator>
      <dc:date>2024-08-17T01:20:00Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple parameter filtering</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Multiple-parameter-filtering/m-p/2476713#M12399</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/305084"&gt;@nahowe&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;Could you try following expression?&lt;BR /&gt;&lt;BR /&gt;NOT($AR_H_USER == '&lt;SPAN&gt;DigOneSvc'&lt;/SPAN&gt; AND $AR_H_OPERATION == 'DELETE')&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Desmond&lt;/P&gt;</description>
      <pubDate>Mon, 19 Aug 2024 02:59:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Multiple-parameter-filtering/m-p/2476713#M12399</guid>
      <dc:creator>DesmondWOO</dc:creator>
      <dc:date>2024-08-19T02:59:31Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple parameter filtering</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Multiple-parameter-filtering/m-p/2476874#M12410</link>
      <description>&lt;P&gt;I couldn't get this to run in the filters, but it is running via transform. So in that case I am creating a new column that meets this condition and then filtering (excluding) anything that does not have the correct data in that column. Is this the correct usage of Qlik? We are struggling to get this to work. It seems Qlik just interacts with columns in lieu of rows, but we can't seem to get anything to work that includes two parameters for filtering.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Aug 2024 15:47:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Multiple-parameter-filtering/m-p/2476874#M12410</guid>
      <dc:creator>nahowe</dc:creator>
      <dc:date>2024-08-19T15:47:23Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple parameter filtering</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Multiple-parameter-filtering/m-p/2477292#M12428</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/305084"&gt;@nahowe&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I'm not sure I fully understand the problem. Could you please provide an example of what you're trying to achieve?"&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;Regards,&lt;BR /&gt;Desmond&lt;/P&gt;</description>
      <pubDate>Wed, 21 Aug 2024 13:33:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Multiple-parameter-filtering/m-p/2477292#M12428</guid>
      <dc:creator>DesmondWOO</dc:creator>
      <dc:date>2024-08-21T13:33:21Z</dc:date>
    </item>
  </channel>
</rss>

