<?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 Search if value is found in another field in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Search-if-value-is-found-in-another-field/m-p/2032908#M85109</link>
    <description>&lt;P&gt;Good day!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a shopping table that have a field "Purchase Order", and also I have a table of purchases received with same "Purchase Order" field.&lt;/P&gt;
&lt;P&gt;For certain reasons (as filters and extra info in both tables) i don't want them to associate, but i would like to know if there's a function as match or find so I can search if table1.PO are between table2.PO, so I can add nonreceived PO's on qlik table.&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;</description>
    <pubDate>Wed, 01 Feb 2023 15:31:40 GMT</pubDate>
    <dc:creator>KarlaB</dc:creator>
    <dc:date>2023-02-01T15:31:40Z</dc:date>
    <item>
      <title>Search if value is found in another field</title>
      <link>https://community.qlik.com/t5/App-Development/Search-if-value-is-found-in-another-field/m-p/2032908#M85109</link>
      <description>&lt;P&gt;Good day!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a shopping table that have a field "Purchase Order", and also I have a table of purchases received with same "Purchase Order" field.&lt;/P&gt;
&lt;P&gt;For certain reasons (as filters and extra info in both tables) i don't want them to associate, but i would like to know if there's a function as match or find so I can search if table1.PO are between table2.PO, so I can add nonreceived PO's on qlik table.&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Wed, 01 Feb 2023 15:31:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Search-if-value-is-found-in-another-field/m-p/2032908#M85109</guid>
      <dc:creator>KarlaB</dc:creator>
      <dc:date>2023-02-01T15:31:40Z</dc:date>
    </item>
    <item>
      <title>Re: Search if value is found in another field</title>
      <link>https://community.qlik.com/t5/App-Development/Search-if-value-is-found-in-another-field/m-p/2032913#M85111</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would do something in script.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You could do a resident load of the PO Number from one table and join it to the other,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Something&amp;nbsp;&lt;/P&gt;
&lt;P&gt;JOIN (TABLE1)&lt;/P&gt;
&lt;P&gt;LOAD&lt;BR /&gt;"Purchase Order"&lt;/P&gt;
&lt;P&gt;1 as Flag&lt;/P&gt;
&lt;P&gt;Resident TABLE2;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The flag would then let you know if the PO Number in Table 2 exists in Table 1&lt;/P&gt;</description>
      <pubDate>Wed, 01 Feb 2023 15:40:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Search-if-value-is-found-in-another-field/m-p/2032913#M85111</guid>
      <dc:creator>Mark_Little</dc:creator>
      <dc:date>2023-02-01T15:40:42Z</dc:date>
    </item>
    <item>
      <title>Re: Search if value is found in another field</title>
      <link>https://community.qlik.com/t5/App-Development/Search-if-value-is-found-in-another-field/m-p/2032930#M85114</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/183689"&gt;@KarlaB&lt;/a&gt;&amp;nbsp;, you can check the EXISTS function.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H1 data-mc-conditions="Targets.NotToTranslate"&gt;Exists - script function&lt;/H1&gt;
&lt;P class="introduction"&gt;&lt;SPAN class="statement" data-mc-conditions="Targets.NotToTranslate"&gt;Exists()&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;determines whether a specific field value has already been loaded into the field in the data load script. The function returns&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-mc-conditions="Targets.NotToTranslate"&gt;TRUE&lt;/SPAN&gt;&amp;nbsp;or&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-mc-conditions="Targets.NotToTranslate"&gt;FALSE&lt;/SPAN&gt;, so can be used in the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="statement" data-mc-conditions="Targets.NotToTranslate"&gt;where&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;clause of a&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="statement" data-mc-conditions="Targets.NotToTranslate"&gt;LOAD&lt;/SPAN&gt;&amp;nbsp;statement or an&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="statement" data-mc-conditions="Targets.NotToTranslate"&gt;IF&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;statement.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/sense/November2022/Subsystems/Hub/Content/Sense_Hub/Scripting/InterRecordFunctions/Exists.htm" target="_blank"&gt;https://help.qlik.com/en-US/sense/November2022/Subsystems/Hub/Content/Sense_Hub/Scripting/InterRecordFunctions/Exists.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Feb 2023 16:02:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Search-if-value-is-found-in-another-field/m-p/2032930#M85114</guid>
      <dc:creator>QFabian</dc:creator>
      <dc:date>2023-02-01T16:02:31Z</dc:date>
    </item>
    <item>
      <title>Re: Search if value is found in another field</title>
      <link>https://community.qlik.com/t5/App-Development/Search-if-value-is-found-in-another-field/m-p/2032992#M85117</link>
      <description>&lt;P&gt;That's exactly what i'm looking for, but I tried and qlik says "EXISTS is not a valid function".&lt;/P&gt;
&lt;P&gt;On excel I would try as if(isnumber(match())) but qlik&amp;nbsp;also does not recognize ISNUMBER function.&lt;/P&gt;</description>
      <pubDate>Wed, 01 Feb 2023 18:05:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Search-if-value-is-found-in-another-field/m-p/2032992#M85117</guid>
      <dc:creator>KarlaB</dc:creator>
      <dc:date>2023-02-01T18:05:31Z</dc:date>
    </item>
    <item>
      <title>Re: Search if value is found in another field</title>
      <link>https://community.qlik.com/t5/App-Development/Search-if-value-is-found-in-another-field/m-p/2033014#M85118</link>
      <description>&lt;P&gt;Dear&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/183689"&gt;@KarlaB&lt;/a&gt;&amp;nbsp;, exists is a script function to use in where clause.&lt;/P&gt;
&lt;P&gt;In Qlik to validate if a field value is a number use&amp;nbsp;&lt;SPAN&gt;ISNUM.... &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://help.qlik.com/en-US/sense/November2022/Subsystems/Hub/Content/Sense_Hub/Scripting/LogicalFunctions/logical-functions.htm#IsNum" target="_blank"&gt;https://help.qlik.com/en-US/sense/November2022/Subsystems/Hub/Content/Sense_Hub/Scripting/LogicalFunctions/logical-functions.htm#IsNum&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Feb 2023 18:24:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Search-if-value-is-found-in-another-field/m-p/2033014#M85118</guid>
      <dc:creator>QFabian</dc:creator>
      <dc:date>2023-02-01T18:24:52Z</dc:date>
    </item>
  </channel>
</rss>

