<?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 Mapping between two table based on predefined wildmatch rules in data in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Mapping-between-two-table-based-on-predefined-wildmatch-rules-in/m-p/1663070#M728893</link>
    <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I have two table as given below&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table: Wire Groups&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Here wild match condition is already written&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="wire groups.PNG" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/26414iFD20839DC316487D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="wire groups.PNG" alt="wire groups.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table: Usage Details &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;The 'usage detail' contains string defined in the above table in wildmatch rule. I have to map these two table and fill the 'Group' data from 'Wire Groups' table.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="Usage Details.PNG" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/26415i830262C7CC638640/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Usage Details.PNG" alt="Usage Details.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 16 Nov 2024 01:35:04 GMT</pubDate>
    <dc:creator>jerryyang756</dc:creator>
    <dc:date>2024-11-16T01:35:04Z</dc:date>
    <item>
      <title>Mapping between two table based on predefined wildmatch rules in data</title>
      <link>https://community.qlik.com/t5/QlikView/Mapping-between-two-table-based-on-predefined-wildmatch-rules-in/m-p/1663070#M728893</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I have two table as given below&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table: Wire Groups&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Here wild match condition is already written&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="wire groups.PNG" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/26414iFD20839DC316487D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="wire groups.PNG" alt="wire groups.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table: Usage Details &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;The 'usage detail' contains string defined in the above table in wildmatch rule. I have to map these two table and fill the 'Group' data from 'Wire Groups' table.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="Usage Details.PNG" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/26415i830262C7CC638640/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Usage Details.PNG" alt="Usage Details.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 01:35:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Mapping-between-two-table-based-on-predefined-wildmatch-rules-in/m-p/1663070#M728893</guid>
      <dc:creator>jerryyang756</dc:creator>
      <dc:date>2024-11-16T01:35:04Z</dc:date>
    </item>
    <item>
      <title>Re: Mapping between two table based on predefined wildmatch rules in data</title>
      <link>https://community.qlik.com/t5/QlikView/Mapping-between-two-table-based-on-predefined-wildmatch-rules-in/m-p/1663254#M728894</link>
      <description>&lt;P&gt;Hi Pritam,&lt;/P&gt;&lt;P&gt;Please use the below script:&lt;/P&gt;&lt;P&gt;TABLE:&lt;BR /&gt;LOAD *,&lt;BR /&gt;MID(COND,1, LEN(COND)-2) AS CONDITION;&lt;BR /&gt;LOAD&lt;BR /&gt;Group,&lt;BR /&gt;MID(SUBFIELD([Wildmatch Condition],','),3) AS COND&lt;BR /&gt;FROM [C:\Users\sumantakm215\Downloads\Data.xlsx] (ooxml, embedded labels, table is [Wire Groups]);&lt;BR /&gt;JOIN(TABLE)&lt;BR /&gt;LOAD&lt;BR /&gt;[Usage Detail]&lt;BR /&gt;FROM [C:\Users\sumantakm215\Downloads\Data.xlsx] (ooxml, embedded labels, table is [Usage Detail]);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOCONCATENATE&lt;BR /&gt;NEW_TABLE:&lt;BR /&gt;LOAD *&lt;BR /&gt;RESIDENT TABLE&lt;BR /&gt;WHERE WILDMATCH([Usage Detail],'*' &amp;amp; CONDITION &amp;amp; '*');&lt;/P&gt;&lt;P&gt;DROP TABLE TABLE;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jan 2020 11:54:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Mapping-between-two-table-based-on-predefined-wildmatch-rules-in/m-p/1663254#M728894</guid>
      <dc:creator>sumanta1234</dc:creator>
      <dc:date>2020-01-07T11:54:33Z</dc:date>
    </item>
    <item>
      <title>Re: Mapping between two table based on predefined wildmatch rules in data</title>
      <link>https://community.qlik.com/t5/QlikView/Mapping-between-two-table-based-on-predefined-wildmatch-rules-in/m-p/1663267#M728895</link>
      <description>&lt;P&gt;Please refer my reply in below thread. It looks similar to what you want&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/t5/New-to-QlikView/Requaried-Mapping-in-bucket-using-wild-search-of-qlikview/td-p/1663257" target="_blank"&gt;https://community.qlik.com/t5/New-to-QlikView/Requaried-Mapping-in-bucket-using-wild-search-of-qlikview/td-p/1663257&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jan 2020 12:47:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Mapping-between-two-table-based-on-predefined-wildmatch-rules-in/m-p/1663267#M728895</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2020-01-07T12:47:46Z</dc:date>
    </item>
    <item>
      <title>Re: Mapping between two table based on predefined wildmatch rules in data</title>
      <link>https://community.qlik.com/t5/QlikView/Mapping-between-two-table-based-on-predefined-wildmatch-rules-in/m-p/1674128#M728896</link>
      <description>&lt;P&gt;Did either of the two posts you received get you what you needed to solve your issue?&amp;nbsp; If so, do not forget to return to the thread and use the Accept as Solution button on the post that helped the most.&amp;nbsp; If you did something different, please consider posting that info and then use the button on your post to mark it as the solution.&amp;nbsp; If you are still needing help, please leave an update, as you are unlikely to get further help unless you update things.&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Brett&lt;/P&gt;</description>
      <pubDate>Mon, 10 Feb 2020 20:52:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Mapping-between-two-table-based-on-predefined-wildmatch-rules-in/m-p/1674128#M728896</guid>
      <dc:creator>Brett_Bleess</dc:creator>
      <dc:date>2020-02-10T20:52:11Z</dc:date>
    </item>
  </channel>
</rss>

