<?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: Vendor File - Address Match in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Vendor-File-Address-Match/m-p/1669731#M728723</link>
    <description>&lt;P&gt;This is not really working as I was thinking it would and after reviewing the code I understand why I'm getting the result I got.&amp;nbsp; &amp;nbsp;I really wanted the Indicator to be the contents of the 'OfficeInd' field, rather than the address itself.&lt;/P&gt;&lt;P&gt;The Join was getting me closer to where I wanted to be but the performance was not desirable.&amp;nbsp; I'm attaching my full script so you can see how I'm using my data.&amp;nbsp; Hopefully that will focus my needs a bit more??&lt;/P&gt;&lt;P&gt;Metaddress is my indicator(OfficeInd) field.&lt;/P&gt;&lt;P&gt;Appreciate the learning opportunity.&lt;/P&gt;</description>
    <pubDate>Mon, 27 Jan 2020 17:43:06 GMT</pubDate>
    <dc:creator>gfisch13</dc:creator>
    <dc:date>2020-01-27T17:43:06Z</dc:date>
    <item>
      <title>Vendor File - Address Match</title>
      <link>https://community.qlik.com/t5/QlikView/Vendor-File-Address-Match/m-p/1669062#M728716</link>
      <description>&lt;P&gt;Hi All - I'm working with a purchase order (PO) file that includes shipping addresses to both home and office locations.&amp;nbsp; I have a second file that includes office location addresses with an indicator of 'O' in a separate field.&lt;/P&gt;&lt;P&gt;I'd like to join these so that the shipping addresses in the PO would have the indicator field with the O attached to the record so that I can differentiate shipments made to office locations and home locations.&lt;/P&gt;&lt;P&gt;I was thinking a Left Join is what I need, but I'm confusing logic from some other software applications I've used.&amp;nbsp; I've simplified the tables and field names below, think I just need help understanding the logic.&amp;nbsp; &amp;nbsp;Thanks!!&lt;/P&gt;&lt;P&gt;George&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;POTable:&lt;/P&gt;&lt;P&gt;DLV_ADR_TXT as Key&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;LocationsTable:&lt;/P&gt;&lt;P&gt;Address as Key&lt;/P&gt;&lt;P&gt;Indicator&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 01:25:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Vendor-File-Address-Match/m-p/1669062#M728716</guid>
      <dc:creator>gfisch13</dc:creator>
      <dc:date>2024-11-16T01:25:32Z</dc:date>
    </item>
    <item>
      <title>Re: Vendor File - Address Match</title>
      <link>https://community.qlik.com/t5/QlikView/Vendor-File-Address-Match/m-p/1669125#M728717</link>
      <description>&lt;P&gt;A left join does sound like what you need.&lt;/P&gt;&lt;P&gt;If you'd like further help, can you please post some example data along with expected output?&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jan 2020 21:51:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Vendor-File-Address-Match/m-p/1669125#M728717</guid>
      <dc:creator>Nicole-Smith</dc:creator>
      <dc:date>2020-01-24T21:51:18Z</dc:date>
    </item>
    <item>
      <title>Re: Vendor File - Address Match</title>
      <link>https://community.qlik.com/t5/QlikView/Vendor-File-Address-Match/m-p/1669151#M728718</link>
      <description>&lt;P&gt;Nicole, thank you!&amp;nbsp; Here is some test data.&amp;nbsp; I really appreciate the help, I learn alot from these exercises with the pro's!&lt;/P&gt;&lt;P&gt;Data attached.&lt;/P&gt;</description>
      <pubDate>Sat, 25 Jan 2020 14:33:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Vendor-File-Address-Match/m-p/1669151#M728718</guid>
      <dc:creator>gfisch13</dc:creator>
      <dc:date>2020-01-25T14:33:10Z</dc:date>
    </item>
    <item>
      <title>Re: Vendor File - Address Match</title>
      <link>https://community.qlik.com/t5/QlikView/Vendor-File-Address-Match/m-p/1669220#M728719</link>
      <description>&lt;P&gt;Hi Gfisch13,&lt;/P&gt;&lt;P&gt;what Nicole-Smith was proposing ist certainly right:&lt;/P&gt;&lt;P&gt;the script&lt;/P&gt;&lt;P&gt;T1:&lt;BR /&gt;LOAD PO_ID,&lt;BR /&gt;DLV_ADR_TXT,&lt;BR /&gt;DESC&lt;BR /&gt;FROM&lt;BR /&gt;[LeftJoinTest.xlsx]&lt;BR /&gt;(ooxml, embedded labels, table is PO);&lt;/P&gt;&lt;P&gt;Left Join(T1)&lt;BR /&gt;LOAD Address as DLV_ADR_TXT,&lt;BR /&gt;OfficeInd&lt;BR /&gt;FROM&lt;BR /&gt;[LeftJoinTest.xlsx]&lt;BR /&gt;(ooxml, embedded labels, table is Locations);&lt;/P&gt;&lt;P&gt;The result table&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ResultTable.jpg" style="width: 428px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/27463i0E7945EF1B90E379/image-size/large?v=v2&amp;amp;px=999" role="button" title="ResultTable.jpg" alt="ResultTable.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;P&gt;Burkhard&lt;/P&gt;</description>
      <pubDate>Sun, 26 Jan 2020 18:43:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Vendor-File-Address-Match/m-p/1669220#M728719</guid>
      <dc:creator>veidlburkhard</dc:creator>
      <dc:date>2020-01-26T18:43:09Z</dc:date>
    </item>
    <item>
      <title>Re: Vendor File - Address Match</title>
      <link>https://community.qlik.com/t5/QlikView/Vendor-File-Address-Match/m-p/1669643#M728720</link>
      <description>&lt;P&gt;Burkhard - thank you for the reply.&amp;nbsp; This worked so I decided to try it on another table and while that worked as well there is a noticeable reduction in performance.&amp;nbsp; Am i forcing too many items through memory?&amp;nbsp; Is there a more efficient way to load/store this data?&lt;/P&gt;&lt;P&gt;Thanks, George&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2020 14:14:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Vendor-File-Address-Match/m-p/1669643#M728720</guid>
      <dc:creator>gfisch13</dc:creator>
      <dc:date>2020-01-27T14:14:40Z</dc:date>
    </item>
    <item>
      <title>Re: Vendor File - Address Match</title>
      <link>https://community.qlik.com/t5/QlikView/Vendor-File-Address-Match/m-p/1669665#M728721</link>
      <description>&lt;P&gt;One other issue I'm noticing is that there are now two records for each address and only one is tagged with the indicator I showed above?&amp;nbsp; Is there something else I need to do?&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2020 15:17:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Vendor-File-Address-Match/m-p/1669665#M728721</guid>
      <dc:creator>gfisch13</dc:creator>
      <dc:date>2020-01-27T15:17:27Z</dc:date>
    </item>
    <item>
      <title>Re: Vendor File - Address Match</title>
      <link>https://community.qlik.com/t5/QlikView/Vendor-File-Address-Match/m-p/1669701#M728722</link>
      <description>&lt;P&gt;Hi Gfisch13,&lt;/P&gt;&lt;P&gt;the same&amp;nbsp; solution can be obtained with a mapping table, which is not so resource consuming compared to a join.&lt;/P&gt;&lt;P&gt;The script would look like this:&lt;/P&gt;&lt;P&gt;MapIndicator:&lt;BR /&gt;Mapping&lt;BR /&gt;LOAD Address,&lt;BR /&gt;OfficeInd&lt;BR /&gt;FROM&lt;BR /&gt;[LeftJoinTest.xlsx]&lt;BR /&gt;(ooxml, embedded labels, table is Locations);&lt;/P&gt;&lt;P&gt;T1:&lt;BR /&gt;LOAD PO_ID,&lt;BR /&gt;DLV_ADR_TXT,&lt;BR /&gt;DESC,&lt;BR /&gt;ApplyMap('MapIndicator', DLV_ADR_TXT, '') as OfficeInd&lt;BR /&gt;FROM&lt;BR /&gt;[LeftJoinTest.xlsx]&lt;BR /&gt;(ooxml, embedded labels, table is PO);&lt;/P&gt;&lt;P&gt;This should also solve the problems with your double rows...&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Burkhad&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2020 16:34:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Vendor-File-Address-Match/m-p/1669701#M728722</guid>
      <dc:creator>veidlburkhard</dc:creator>
      <dc:date>2020-01-27T16:34:13Z</dc:date>
    </item>
    <item>
      <title>Re: Vendor File - Address Match</title>
      <link>https://community.qlik.com/t5/QlikView/Vendor-File-Address-Match/m-p/1669731#M728723</link>
      <description>&lt;P&gt;This is not really working as I was thinking it would and after reviewing the code I understand why I'm getting the result I got.&amp;nbsp; &amp;nbsp;I really wanted the Indicator to be the contents of the 'OfficeInd' field, rather than the address itself.&lt;/P&gt;&lt;P&gt;The Join was getting me closer to where I wanted to be but the performance was not desirable.&amp;nbsp; I'm attaching my full script so you can see how I'm using my data.&amp;nbsp; Hopefully that will focus my needs a bit more??&lt;/P&gt;&lt;P&gt;Metaddress is my indicator(OfficeInd) field.&lt;/P&gt;&lt;P&gt;Appreciate the learning opportunity.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2020 17:43:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Vendor-File-Address-Match/m-p/1669731#M728723</guid>
      <dc:creator>gfisch13</dc:creator>
      <dc:date>2020-01-27T17:43:06Z</dc:date>
    </item>
    <item>
      <title>Re: Vendor File - Address Match</title>
      <link>https://community.qlik.com/t5/QlikView/Vendor-File-Address-Match/m-p/1671434#M728725</link>
      <description>&lt;P&gt;Thank you again!!&amp;nbsp; Now that I understand more I see how this works and will be using the function more in the future.&lt;/P&gt;</description>
      <pubDate>Fri, 31 Jan 2020 17:43:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Vendor-File-Address-Match/m-p/1671434#M728725</guid>
      <dc:creator>gfisch13</dc:creator>
      <dc:date>2020-01-31T17:43:48Z</dc:date>
    </item>
  </channel>
</rss>

