<?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: Using condition in Data Movement &amp; Streaming</title>
    <link>https://community.qlik.com/t5/Data-Movement-Streaming/Using-condition/m-p/2432259#M1986</link>
    <description>&lt;P&gt;&lt;SPAN&gt;where match(countries,'ind','aus')&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;in this same condition, if i wanted to check for IND and different fiels like salary 200000.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;how can we use the condition using AND in the where clause.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 19 Mar 2024 09:42:02 GMT</pubDate>
    <dc:creator>Jahnavi2408</dc:creator>
    <dc:date>2024-03-19T09:42:02Z</dc:date>
    <item>
      <title>Using condition</title>
      <link>https://community.qlik.com/t5/Data-Movement-Streaming/Using-condition/m-p/2432224#M1983</link>
      <description>&lt;P&gt;can we able to use multiple condition in a where clause?&lt;/P&gt;
&lt;P&gt;for ex: we are having several countries. ( ind, aus, eng,pak)&lt;/P&gt;
&lt;P&gt;i need to filter and show only ind and aus.&lt;/P&gt;
&lt;P&gt;so, how we can write script using where condition.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;can anyone please share your ideas for my learning.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Mar 2025 22:11:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Data-Movement-Streaming/Using-condition/m-p/2432224#M1983</guid>
      <dc:creator>Jahnavi2408</dc:creator>
      <dc:date>2025-03-19T22:11:20Z</dc:date>
    </item>
    <item>
      <title>Re: Using condition</title>
      <link>https://community.qlik.com/t5/Data-Movement-Streaming/Using-condition/m-p/2432232#M1984</link>
      <description>&lt;P&gt;Hello, you can use something like this&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Load *&lt;/P&gt;
&lt;P&gt;from Field&lt;/P&gt;
&lt;P&gt;where match(countries,'ind','aus')&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the Where clause concerns different fields, you can add an “and” then the following condition&lt;/P&gt;</description>
      <pubDate>Tue, 19 Mar 2024 09:08:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Data-Movement-Streaming/Using-condition/m-p/2432232#M1984</guid>
      <dc:creator>Clement15</dc:creator>
      <dc:date>2024-03-19T09:08:34Z</dc:date>
    </item>
    <item>
      <title>Re: Using condition</title>
      <link>https://community.qlik.com/t5/Data-Movement-Streaming/Using-condition/m-p/2432247#M1985</link>
      <description>&lt;P&gt;Thank you so much for the solution.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Mar 2024 09:23:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Data-Movement-Streaming/Using-condition/m-p/2432247#M1985</guid>
      <dc:creator>Jahnavi2408</dc:creator>
      <dc:date>2024-03-19T09:23:25Z</dc:date>
    </item>
    <item>
      <title>Re: Using condition</title>
      <link>https://community.qlik.com/t5/Data-Movement-Streaming/Using-condition/m-p/2432259#M1986</link>
      <description>&lt;P&gt;&lt;SPAN&gt;where match(countries,'ind','aus')&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;in this same condition, if i wanted to check for IND and different fiels like salary 200000.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;how can we use the condition using AND in the where clause.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Mar 2024 09:42:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Data-Movement-Streaming/Using-condition/m-p/2432259#M1986</guid>
      <dc:creator>Jahnavi2408</dc:creator>
      <dc:date>2024-03-19T09:42:02Z</dc:date>
    </item>
    <item>
      <title>Re: Using condition</title>
      <link>https://community.qlik.com/t5/Data-Movement-Streaming/Using-condition/m-p/2432262#M1987</link>
      <description>&lt;P&gt;Like this ?&lt;BR /&gt;&lt;BR /&gt;Load *&lt;/P&gt;
&lt;P&gt;from Field&lt;/P&gt;
&lt;P&gt;where countries ='ind'&lt;/P&gt;
&lt;P&gt;and&amp;nbsp; salary =&amp;nbsp;&lt;SPAN&gt;200000&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Mar 2024 09:45:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Data-Movement-Streaming/Using-condition/m-p/2432262#M1987</guid>
      <dc:creator>Clement15</dc:creator>
      <dc:date>2024-03-19T09:45:48Z</dc:date>
    </item>
    <item>
      <title>Re: Using condition</title>
      <link>https://community.qlik.com/t5/Data-Movement-Streaming/Using-condition/m-p/2432268#M1988</link>
      <description>&lt;P&gt;if i try to add the AND in the where condition, i cant able to see the data for both. for country as well as for salary.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;this is my condition, for this i cant able to see the data.&lt;/P&gt;
&lt;P&gt;where match(City,'Chicago' and Latitude = 40.730599);&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Mar 2024 09:54:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Data-Movement-Streaming/Using-condition/m-p/2432268#M1988</guid>
      <dc:creator>Jahnavi2408</dc:creator>
      <dc:date>2024-03-19T09:54:13Z</dc:date>
    </item>
    <item>
      <title>Re: Using condition</title>
      <link>https://community.qlik.com/t5/Data-Movement-Streaming/Using-condition/m-p/2432271#M1989</link>
      <description>&lt;P&gt;You cannot use the and in the match&lt;/P&gt;</description>
      <pubDate>Tue, 19 Mar 2024 09:56:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Data-Movement-Streaming/Using-condition/m-p/2432271#M1989</guid>
      <dc:creator>Clement15</dc:creator>
      <dc:date>2024-03-19T09:56:19Z</dc:date>
    </item>
    <item>
      <title>Re: Using condition</title>
      <link>https://community.qlik.com/t5/Data-Movement-Streaming/Using-condition/m-p/2432274#M1990</link>
      <description>&lt;P&gt;So, what is the way to check 2 rows in the single where condition.&lt;/P&gt;
&lt;P&gt;row1- city&lt;/P&gt;
&lt;P&gt;row2- latitude&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Mar 2024 09:59:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Data-Movement-Streaming/Using-condition/m-p/2432274#M1990</guid>
      <dc:creator>Jahnavi2408</dc:creator>
      <dc:date>2024-03-19T09:59:05Z</dc:date>
    </item>
    <item>
      <title>Re: Using condition</title>
      <link>https://community.qlik.com/t5/Data-Movement-Streaming/Using-condition/m-p/2432278#M1991</link>
      <description>&lt;P&gt;The match is useful if you have several categories selected for your field, otherwise the = is enough.&lt;BR /&gt;Does this formula work?&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;where City='Chicago' &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;and Latitude = '40.730599'&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Mar 2024 10:01:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Data-Movement-Streaming/Using-condition/m-p/2432278#M1991</guid>
      <dc:creator>Clement15</dc:creator>
      <dc:date>2024-03-19T10:01:51Z</dc:date>
    </item>
    <item>
      <title>Re: Using condition</title>
      <link>https://community.qlik.com/t5/Data-Movement-Streaming/Using-condition/m-p/2432279#M1992</link>
      <description>&lt;P&gt;Running successfully, but cant able to see the data in data manager.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Mar 2024 10:46:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Data-Movement-Streaming/Using-condition/m-p/2432279#M1992</guid>
      <dc:creator>Jahnavi2408</dc:creator>
      <dc:date>2024-03-19T10:46:45Z</dc:date>
    </item>
    <item>
      <title>Re: Using condition</title>
      <link>https://community.qlik.com/t5/Data-Movement-Streaming/Using-condition/m-p/2432280#M1993</link>
      <description>&lt;P&gt;Could you give me an example of your data?&lt;/P&gt;</description>
      <pubDate>Tue, 19 Mar 2024 10:05:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Data-Movement-Streaming/Using-condition/m-p/2432280#M1993</guid>
      <dc:creator>Clement15</dc:creator>
      <dc:date>2024-03-19T10:05:31Z</dc:date>
    </item>
  </channel>
</rss>

