<?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: Flag non matches in a Right Join Load Script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Flag-non-matches-in-a-Right-Join-Load-Script/m-p/1702034#M593528</link>
    <description>&lt;P&gt;If Saran's post got you what you needed, we would appreciate it if you could return to your thread and use the Accept as Solution button on that post to mark it giving them credit for the help and letting other Members know that worked.&lt;/P&gt;&lt;P&gt;Here is a link that may be of some further help along the lines of that post:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/Don-t-join-use-Applymap-instead/ba-p/1467592" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/Don-t-join-use-Applymap-instead/ba-p/1467592&lt;/A&gt;&lt;/P&gt;&lt;P&gt;The only other thing of which I can think would be to load the Excel file into a temp resident table, sort/order it and then you could Peek() each ID to check if it exists in the other table etc, and if not, you could use a flag field to set that flag to a '1' else 0 to be able to dump those records out etc.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Brett&lt;/P&gt;</description>
    <pubDate>Thu, 14 May 2020 14:26:19 GMT</pubDate>
    <dc:creator>Brett_Bleess</dc:creator>
    <dc:date>2020-05-14T14:26:19Z</dc:date>
    <item>
      <title>Flag non matches in a Right Join Load Script</title>
      <link>https://community.qlik.com/t5/QlikView/Flag-non-matches-in-a-Right-Join-Load-Script/m-p/1693830#M593526</link>
      <description>&lt;P&gt;Team, I have the below code that right joins data from an Excel file to an existing data set.&amp;nbsp; The result is that only data that matches the CS_MODEL_NUMBER below is kept.&amp;nbsp; The challenge that I am having is that because the Excel file is manager by humans it is possible for them to enter an incorrect&amp;nbsp;CS_MODEL_NUMBER.&amp;nbsp; Is there a way for me to identify and flag&amp;nbsp;CS_MODEL_NUMBER that came from the Excel and didn't match any existing&amp;nbsp;CS_MODEL_NUMBER?&amp;nbsp; Then I could produce a count KPI and export table of the non matches&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;////CS Tower&lt;BR /&gt;Right Join&lt;BR /&gt;LOAD [Tower name] as [CS Tower],&lt;BR /&gt;[Model_Number (from Pandora)] as [CS Model],&lt;BR /&gt;[Model_Number (from Pandora)]as CS_MODEL_NUMBER,&lt;BR /&gt;[End Of Life Status (Yes / No )] as [Eol Status],&lt;BR /&gt;DATE([End Of Life Status Date (day/mon/year)],'DD-MMM-YYYY')as [End Of Life Status Date],&lt;/P&gt;&lt;P&gt;If(Len(Trim([End Of Life Status Date (day/mon/year)])) = 0, 'No End of Life Date',&lt;BR /&gt;If([End Of Life Status Date (day/mon/year)] &amp;lt; Today(), 'Past EoL',&lt;BR /&gt;If([End Of Life Status Date (day/mon/year)] &amp;lt;= Today()+365, 'Within 12 Months',&lt;BR /&gt;If([End Of Life Status Date (day/mon/year)] &amp;lt;= Today()+730, 'Within 24 Months','Beyond 24 Months'&lt;BR /&gt;)))) as [Duration to EoL]&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;FROM&lt;BR /&gt;[$(VExternalDirectory)EoL Tower data.xlsx]&lt;BR /&gt;(ooxml, embedded labels, table is [Sheet1]);&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 18:46:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Flag-non-matches-in-a-Right-Join-Load-Script/m-p/1693830#M593526</guid>
      <dc:creator>brf10043</dc:creator>
      <dc:date>2024-11-16T18:46:56Z</dc:date>
    </item>
    <item>
      <title>Re: Flag non matches in a Right Join Load Script</title>
      <link>https://community.qlik.com/t5/QlikView/Flag-non-matches-in-a-Right-Join-Load-Script/m-p/1697841#M593527</link>
      <description>&lt;P&gt;You can try either ApplyMap or Not Exists in Where, to check the availability.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Apr 2020 17:38:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Flag-non-matches-in-a-Right-Join-Load-Script/m-p/1697841#M593527</guid>
      <dc:creator>Saravanan_Desingh</dc:creator>
      <dc:date>2020-04-29T17:38:51Z</dc:date>
    </item>
    <item>
      <title>Re: Flag non matches in a Right Join Load Script</title>
      <link>https://community.qlik.com/t5/QlikView/Flag-non-matches-in-a-Right-Join-Load-Script/m-p/1702034#M593528</link>
      <description>&lt;P&gt;If Saran's post got you what you needed, we would appreciate it if you could return to your thread and use the Accept as Solution button on that post to mark it giving them credit for the help and letting other Members know that worked.&lt;/P&gt;&lt;P&gt;Here is a link that may be of some further help along the lines of that post:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/Don-t-join-use-Applymap-instead/ba-p/1467592" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/Don-t-join-use-Applymap-instead/ba-p/1467592&lt;/A&gt;&lt;/P&gt;&lt;P&gt;The only other thing of which I can think would be to load the Excel file into a temp resident table, sort/order it and then you could Peek() each ID to check if it exists in the other table etc, and if not, you could use a flag field to set that flag to a '1' else 0 to be able to dump those records out etc.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Brett&lt;/P&gt;</description>
      <pubDate>Thu, 14 May 2020 14:26:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Flag-non-matches-in-a-Right-Join-Load-Script/m-p/1702034#M593528</guid>
      <dc:creator>Brett_Bleess</dc:creator>
      <dc:date>2020-05-14T14:26:19Z</dc:date>
    </item>
  </channel>
</rss>

