<?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: What  is  Applymap where we Use Give an example ? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/What-is-Applymap-where-we-Use-Give-an-example/m-p/1646380#M732553</link>
    <description>&lt;P&gt;Jones, have a look at the following Design Blog link, hopefully that will get you what you need on this one:&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;Regards,&lt;BR /&gt;Brett&lt;/P&gt;</description>
    <pubDate>Wed, 13 Nov 2019 13:21:38 GMT</pubDate>
    <dc:creator>Brett_Bleess</dc:creator>
    <dc:date>2019-11-13T13:21:38Z</dc:date>
    <item>
      <title>What  is  Applymap where we Use Give an example ?</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-Applymap-where-we-Use-Give-an-example/m-p/1644586#M732550</link>
      <description>&lt;P&gt;Hi All&lt;/P&gt;&lt;P&gt;I am new to Qlikview&lt;/P&gt;&lt;P&gt;What&amp;nbsp; is&amp;nbsp; Applymap where we Use Give an example ?&lt;/P&gt;&lt;P&gt;plz help.&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 19:43:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-Applymap-where-we-Use-Give-an-example/m-p/1644586#M732550</guid>
      <dc:creator>jonesbrown</dc:creator>
      <dc:date>2024-11-16T19:43:13Z</dc:date>
    </item>
    <item>
      <title>Re: What  is  Applymap where we Use Give an example ?</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-Applymap-where-we-Use-Give-an-example/m-p/1644616#M732551</link>
      <description>&lt;P&gt;Hi Jones,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;when ever we need to use VLOOKUP() in QlikView we will use APPlyMap()&lt;/P&gt;&lt;P&gt;Ex:-&lt;/P&gt;&lt;P&gt;T1:&lt;/P&gt;&lt;P&gt;Mapping Load&lt;/P&gt;&lt;P&gt;EID,&lt;/P&gt;&lt;P&gt;Ename&lt;/P&gt;&lt;P&gt;from......;&lt;/P&gt;&lt;P&gt;T2:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;A,&lt;/P&gt;&lt;P&gt;B,&lt;/P&gt;&lt;P&gt;C,&lt;/P&gt;&lt;P&gt;ApplyMap('T1',EID,Null()) as "Employeename",&lt;/P&gt;&lt;P&gt;D&lt;/P&gt;&lt;P&gt;From ......;&lt;/P&gt;&lt;P&gt;So after execution of script at the end Automatically T1 table will drop.&lt;/P&gt;&lt;P&gt;Conditions while we are using ApplyMap()&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Before using ApplyMap() there should be Mapping Load table Exist&lt;/LI&gt;&lt;LI&gt;Mapping Load table must should have only 2 dimensions in that table. (Ex: EID, EName)&amp;nbsp;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Please go with some other links mentioned below for more understand&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/t5/QlikView-App-Development/quick-applymap-example/td-p/515616" target="_blank"&gt;https://community.qlik.com/t5/QlikView-App-Development/quick-applymap-example/td-p/515616&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if you still not clear reach out me on&amp;nbsp; +91 8376 964 364.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Nov 2019 07:12:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-Applymap-where-we-Use-Give-an-example/m-p/1644616#M732551</guid>
      <dc:creator>ramasaisaksoft</dc:creator>
      <dc:date>2019-11-08T07:12:04Z</dc:date>
    </item>
    <item>
      <title>Re: What  is  Applymap where we Use Give an example ?</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-Applymap-where-we-Use-Give-an-example/m-p/1644637#M732552</link>
      <description>&lt;P&gt;Hlo.,&lt;/P&gt;&lt;P&gt;when ever we need to use applymap in Qlikview&lt;/P&gt;&lt;P&gt;w e having certain rules .,mainly applymap use to map field to another table like VLOOKUP()&lt;/P&gt;&lt;P&gt;..&lt;/P&gt;&lt;P&gt;we are using mapping as prefix for loading table it is always return in before applymap&lt;/P&gt;&lt;P&gt;like ..&lt;/P&gt;&lt;P&gt;map:&lt;/P&gt;&lt;P&gt;mapping load &amp;nbsp;a,b&lt;/P&gt;&lt;P&gt;from path;&lt;/P&gt;&lt;P&gt;load *,&lt;/P&gt;&lt;P&gt;applymap('map',a) //here map is above table name and a is common field from 2 table&amp;nbsp;&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;in mapping table always having 2 fields only.&lt;/P&gt;&lt;P&gt;1. Key field&lt;/P&gt;&lt;P&gt;2.Mapping field&lt;/P&gt;&lt;P&gt;......&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and the main diference of left join and applymap is&amp;nbsp;&lt;/P&gt;&lt;P&gt;.........................................&lt;/P&gt;&lt;P&gt;Sno,Name&lt;/P&gt;&lt;P&gt;1,surya&lt;/P&gt;&lt;P&gt;2,Jones&lt;/P&gt;&lt;P&gt;3,Vinayak&lt;/P&gt;&lt;P&gt;1,Prakash&lt;/P&gt;&lt;P&gt;........................&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;when you do applymap&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1,surya&lt;/P&gt;&lt;P&gt;2,Jones&lt;/P&gt;&lt;P&gt;3,Vinayak&lt;/P&gt;&lt;P&gt;1,surya&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;when you do left join&lt;/P&gt;&lt;P&gt;1,surya&lt;/P&gt;&lt;P&gt;2,Jones&lt;/P&gt;&lt;P&gt;3,Vinayak&lt;/P&gt;&lt;P&gt;1,Prakash&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Nov 2019 07:36:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-Applymap-where-we-Use-Give-an-example/m-p/1644637#M732552</guid>
      <dc:creator>Surya</dc:creator>
      <dc:date>2019-11-08T07:36:29Z</dc:date>
    </item>
    <item>
      <title>Re: What  is  Applymap where we Use Give an example ?</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-Applymap-where-we-Use-Give-an-example/m-p/1646380#M732553</link>
      <description>&lt;P&gt;Jones, have a look at the following Design Blog link, hopefully that will get you what you need on this one:&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;Regards,&lt;BR /&gt;Brett&lt;/P&gt;</description>
      <pubDate>Wed, 13 Nov 2019 13:21:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-Applymap-where-we-Use-Give-an-example/m-p/1646380#M732553</guid>
      <dc:creator>Brett_Bleess</dc:creator>
      <dc:date>2019-11-13T13:21:38Z</dc:date>
    </item>
  </channel>
</rss>

