<?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: Applymap() duplication in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Applymap-duplication/m-p/2536588#M108700</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/337990"&gt;@chimiralavenkatesulu&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you, please, provide more information about your issue or an example? You can load the mapping using distinct function to not allow duplicates. However, I think that, when doing the applymap it will depend on the table you are doing it. I mean, if that table has duplicates, the applymap will be duplicated too.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kind Regards&lt;/P&gt;
&lt;P&gt;Daniel&lt;/P&gt;</description>
    <pubDate>Wed, 19 Nov 2025 10:40:53 GMT</pubDate>
    <dc:creator>Daniel_Castella</dc:creator>
    <dc:date>2025-11-19T10:40:53Z</dc:date>
    <item>
      <title>Applymap() duplication</title>
      <link>https://community.qlik.com/t5/App-Development/Applymap-duplication/m-p/2536584#M108699</link>
      <description>&lt;P&gt;Hi Every one,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;is&amp;nbsp;&lt;/P&gt;
&lt;P&gt;is applymap() allowing duplicates? why? what is the final result?&amp;nbsp; can any one answer me please&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Nov 2025 10:20:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Applymap-duplication/m-p/2536584#M108699</guid>
      <dc:creator>chimiralavenkatesulu</dc:creator>
      <dc:date>2025-11-19T10:20:59Z</dc:date>
    </item>
    <item>
      <title>Re: Applymap() duplication</title>
      <link>https://community.qlik.com/t5/App-Development/Applymap-duplication/m-p/2536588#M108700</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/337990"&gt;@chimiralavenkatesulu&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you, please, provide more information about your issue or an example? You can load the mapping using distinct function to not allow duplicates. However, I think that, when doing the applymap it will depend on the table you are doing it. I mean, if that table has duplicates, the applymap will be duplicated too.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kind Regards&lt;/P&gt;
&lt;P&gt;Daniel&lt;/P&gt;</description>
      <pubDate>Wed, 19 Nov 2025 10:40:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Applymap-duplication/m-p/2536588#M108700</guid>
      <dc:creator>Daniel_Castella</dc:creator>
      <dc:date>2025-11-19T10:40:53Z</dc:date>
    </item>
    <item>
      <title>Re: Applymap() duplication</title>
      <link>https://community.qlik.com/t5/App-Development/Applymap-duplication/m-p/2536589#M108701</link>
      <description>&lt;P&gt;applymap does not create duplicates however it allows map table to contain duplicates. It picks first value from the mapping table which matches the map.&amp;nbsp;&lt;/P&gt;&lt;P&gt;so assuming you have mapping tables like below&amp;nbsp;&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;map_from, map_to&lt;/EM&gt;&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;a, 1&lt;/EM&gt;&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;a, 2&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;the result of mapping value a will be 1 as that is the first value in mapping table.&amp;nbsp;&lt;/P&gt;&lt;P&gt;You may also think about applymap as of vlookup equivalent.&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;</description>
      <pubDate>Wed, 19 Nov 2025 10:47:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Applymap-duplication/m-p/2536589#M108701</guid>
      <dc:creator>Lech_Miszkiewicz</dc:creator>
      <dc:date>2025-11-19T10:47:15Z</dc:date>
    </item>
    <item>
      <title>Re: Applymap() duplication</title>
      <link>https://community.qlik.com/t5/App-Development/Applymap-duplication/m-p/2536748#M108727</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Mapping load is Row-by-Row Execution , when the main table is loaded, Qlik checks the mapping table for every single row. If the key field in your main table is 'A',&lt;/P&gt;&lt;P&gt;ApplyMap() finds the corresponding value in the map table and returns it.&lt;/P&gt;&lt;P&gt;If mapping table duplicate values for ID, data returns only for first value.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;example:&lt;/STRONG&gt;&lt;BR /&gt;ID, to_map&lt;BR /&gt;100, A&lt;BR /&gt;100, B&lt;/P&gt;&lt;P&gt;the result of mapping value will be A. (if it is first record B the result of mapping value will B)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Nov 2025 13:35:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Applymap-duplication/m-p/2536748#M108727</guid>
      <dc:creator>Nagaraju_KCS</dc:creator>
      <dc:date>2025-11-20T13:35:08Z</dc:date>
    </item>
  </channel>
</rss>

