<?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 what is apply map? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/what-is-apply-map/m-p/107864#M763071</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am new to qlikview so can you please explain about applymap?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator>ksk278074</dc:creator>
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>what is apply map?</title>
      <link>https://community.qlik.com/t5/QlikView/what-is-apply-map/m-p/107864#M763071</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am new to qlikview so can you please explain about applymap?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/what-is-apply-map/m-p/107864#M763071</guid>
      <dc:creator>ksk278074</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: what is apply map?</title>
      <link>https://community.qlik.com/t5/QlikView/what-is-apply-map/m-p/107865#M763073</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 14px; margin: 10px 0; color: #0f0f0f; font-family: 'Open Sans', Arial, sans-serif;"&gt;&lt;SPAN style="font-size: 10pt; font-family: arial, helvetica, sans-serif;"&gt;The &lt;SPAN class="statement" style="font-weight: bold;"&gt;ApplyMap&lt;/SPAN&gt; script function is used for mapping the output of an expression to a previously loaded mapping table.&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="syntax_heading" data-mc-autonum="Syntax: " style="font-size: 14px; margin: 10px 0; font-weight: bold; color: #0f0f0f; font-family: 'Open Sans', Arial, sans-serif;"&gt;&lt;SPAN class="autonumber" style="font-size: 10pt; font-family: arial, helvetica, sans-serif;"&gt;Syntax: &lt;/SPAN&gt;&lt;/P&gt;&lt;P class="syntax" data-mc-conditions="Targets.NotToTranslate" style="font-size: 16px; margin: 10px 0; font-family: Monaco, Menlo, Consolas, 'Courier New', monospace; background-color: #f4f4f4; color: #0f0f0f;"&gt;&lt;SPAN style="font-size: 10pt; font-family: arial, helvetica, sans-serif;"&gt;ApplyMap('map_name', expression [ , default_mapping ] )&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="syntax" data-mc-conditions="Targets.NotToTranslate" style="font-size: 16px; margin: 10px 0; font-family: Monaco, Menlo, Consolas, 'Courier New', monospace; background-color: #f4f4f4; color: #0f0f0f;"&gt;&lt;SPAN style="font-size: 10pt; font-family: arial, helvetica, sans-serif;"&gt;&lt;SPAN lang="en"&gt;you use it to make mapping applications ...&lt;BR /&gt;ie first you create a map and then apply map ..&lt;BR /&gt;&lt;BR /&gt;example:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="syntax" data-mc-conditions="Targets.NotToTranslate" style="font-size: 16px; margin: 10px 0; font-family: Monaco, Menlo, Consolas, 'Courier New', monospace; background-color: #f4f4f4; color: #0f0f0f;"&gt;&lt;SPAN style="font-size: 10pt; font-family: arial, helvetica, sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_15320188211908209" jivemacro_uid="_15320188211908209" modifiedtitle="true"&gt;
&lt;P&gt;mapjob:&lt;/P&gt;
&lt;P&gt;mapping load&lt;/P&gt;
&lt;P&gt;userpass,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; keyyy&lt;/P&gt;
&lt;P&gt;FROM [lib://doc/qvd-1.xlsx]&lt;/P&gt;
&lt;P&gt;(ooxml, embedded labels, table is Planilha1);&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;tab_applythemap:&lt;/P&gt;
&lt;P&gt;LOAD userpass,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; code,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; APPLYMAP('mapjob',userpass),'error message') AS keypass&lt;/P&gt;


&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;In the example, I map the users and passwords that are in a table, and right after I apply the mapping so that - if the user exists he maps the password and plays in the keypass field, if it does not exist it will play the value 'error message' which could be any message&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;More info: &lt;A href="https://help.qlik.com/en-US/sense/June2018/Subsystems/Hub/Content/Scripting/MappingFunctions/ApplyMap.htm" title="https://help.qlik.com/en-US/sense/June2018/Subsystems/Hub/Content/Scripting/MappingFunctions/ApplyMap.htm"&gt;https://help.qlik.com/en-US/sense/June2018/Subsystems/Hub/Content/Scripting/MappingFunctions/ApplyMap.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it help's?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2018 16:51:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/what-is-apply-map/m-p/107865#M763073</guid>
      <dc:creator>PabloTrevisan</dc:creator>
      <dc:date>2018-07-19T16:51:21Z</dc:date>
    </item>
    <item>
      <title>Re: what is apply map?</title>
      <link>https://community.qlik.com/t5/QlikView/what-is-apply-map/m-p/107866#M763075</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Applymap() is a function used to map the field to corresponding field value pair. LIke lookup() function in excel. &lt;/P&gt;&lt;P&gt;Applymap take only two fields. Check here for example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/qlikview/November2017/Subsystems/Client/Content/Scripting/MappingFunctions/ApplyMap.htm" title="https://help.qlik.com/en-US/qlikview/November2017/Subsystems/Client/Content/Scripting/MappingFunctions/ApplyMap.htm"&gt;https://help.qlik.com/en-US/qlikview/November2017/Subsystems/Client/Content/Scripting/MappingFunctions/ApplyMap.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2018 16:54:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/what-is-apply-map/m-p/107866#M763075</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2018-07-19T16:54:51Z</dc:date>
    </item>
    <item>
      <title>Re: what is apply map?</title>
      <link>https://community.qlik.com/t5/QlikView/what-is-apply-map/m-p/107867#M763076</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To put it in a simple manner you need a field which exist in another table, instead of join go for the apply map. This works out if you need only for a single field from other table. If you need more than one field go for join. And the syntax is well explained for your question by others &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jul 2018 05:33:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/what-is-apply-map/m-p/107867#M763076</guid>
      <dc:creator>nishanthi_8</dc:creator>
      <dc:date>2018-07-20T05:33:34Z</dc:date>
    </item>
    <item>
      <title>Re: what is apply map?</title>
      <link>https://community.qlik.com/t5/QlikView/what-is-apply-map/m-p/107868#M763077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;STRONG style="font-size: 11.7px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;A _jive_internal="true" data-avatarid="-1" data-userid="281655" data-username="ksk278074" href="https://community.qlik.com/people/ksk278074" style="padding: 0 3px 0 0; font-weight: inherit; font-style: inherit; font-size: 1.1em; font-family: inherit; color: #3778c7;"&gt;sivakumar k&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Please check &lt;A _jive_internal="true" data-avatarid="5859" data-externalid="" data-online="false" data-presence="null" data-userid="69948" data-username="rustyfishbones" href="https://community.qlik.com/people/rustyfishbones" style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3778c7;"&gt;Alan Farrell&lt;/A&gt;&lt;SPAN style="color: #8b8b8b; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt; reply.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I cant upload an example, but here is some screen prints&lt;/P&gt;&lt;P&gt;I created a qvd of a mapping table containing 2 columns&lt;/P&gt;&lt;P&gt;I need to add Warehouse Description to my Chambers Table that contains a common field of Warehouse&lt;/P&gt;&lt;P&gt;&lt;IMG alt="1.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/208375_1.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;Then in my chamber table I use the ApplyMap function to lookup against my mapping table above, so I can add the Warehouse Description to Chamber Table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="2.png" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/208385_2.png" style="height: 111px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;Basically it has allowed me add the Warehouse Description to my Chambers table, like you would use the VLOOKUP Function in Excel&lt;/P&gt;&lt;P&gt;I hope that helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jul 2018 05:45:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/what-is-apply-map/m-p/107868#M763077</guid>
      <dc:creator>qlikviewwizard</dc:creator>
      <dc:date>2018-07-20T05:45:56Z</dc:date>
    </item>
  </channel>
</rss>

