<?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: Apply Map Function in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Apply-Map-Function/m-p/1561246#M742704</link>
    <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 740px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/8835iFC257E601500672B/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 26 Mar 2019 10:28:04 GMT</pubDate>
    <dc:creator>Vegar</dc:creator>
    <dc:date>2019-03-26T10:28:04Z</dc:date>
    <item>
      <title>Apply Map Function</title>
      <link>https://community.qlik.com/t5/QlikView/Apply-Map-Function/m-p/1561211#M742700</link>
      <description>&lt;P&gt;Maptab: Mapping LOAD * INLINE [&lt;/P&gt;&lt;P&gt;ID, NAME&lt;/P&gt;&lt;P&gt;&amp;nbsp; 1, A&lt;/P&gt;&lt;P&gt;2,&lt;/P&gt;&lt;P&gt;3, C&lt;/P&gt;&lt;P&gt;4, D&lt;/P&gt;&lt;P&gt;5,&lt;/P&gt;&lt;P&gt;6, E&amp;nbsp; ];&lt;/P&gt;&lt;P&gt;This is my mapping table&lt;/P&gt;&lt;P&gt;using apply map i want replace null value&amp;nbsp; with some names and NAME Field get into the main table&lt;/P&gt;&lt;P&gt;MainTable:&lt;BR /&gt;LOAD [Customer ID],&lt;BR /&gt;Details,&lt;BR /&gt;Product,&lt;BR /&gt;&lt;BR /&gt;ApplyMap('Maptab',[Customer ID],'notnull') as Name&lt;BR /&gt;FROM&lt;BR /&gt;C:\Users\new\Documents\Applymap.xlsx&lt;BR /&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;this is my main table&lt;/P&gt;&lt;P&gt;please help me&lt;/P&gt;&lt;P&gt;thanks &amp;amp; regards&lt;/P&gt;&lt;P&gt;hareesh&lt;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Apply-Map-Function/m-p/1561211#M742700</guid>
      <dc:creator>Hareeshkommineni</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Apply Map Function</title>
      <link>https://community.qlik.com/t5/QlikView/Apply-Map-Function/m-p/1561228#M742701</link>
      <description>&lt;PRE&gt; Maptab:
 Mapping LOAD 
 	ID, 
 	IF(len(NAME)=0,null(),NAME) 
 INLINE [
    ID, NAME
    1, A
    2, 
    3, C
    4, D
    5, 
    6, E
    7, F
    8, G
    9, H
];

Applymap:
LOAD [Customer ID], 
     Details, 
     Product,
     
     ApplyMap('Maptab',[Customer ID],'notnull')  as Name
FROM
Applymap.xlsx
(ooxml, embedded labels, table is Sheet1);

&lt;/PRE&gt;&lt;P&gt;I added an Nullvalue in your xlsx-file&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Mar 2019 09:58:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Apply-Map-Function/m-p/1561228#M742701</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2019-03-26T09:58:13Z</dc:date>
    </item>
    <item>
      <title>Re: Apply Map Function</title>
      <link>https://community.qlik.com/t5/QlikView/Apply-Map-Function/m-p/1561240#M742702</link>
      <description>&lt;P&gt;but in Name fields It display blanks only&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="WhatsApp Image 2019-03-26 at 3.46.05 PM.jpeg" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/8834iB8C3949C3E6C06AA/image-size/large?v=v2&amp;amp;px=999" role="button" title="WhatsApp Image 2019-03-26 at 3.46.05 PM.jpeg" alt="WhatsApp Image 2019-03-26 at 3.46.05 PM.jpeg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;balnks are not filled&lt;/P&gt;</description>
      <pubDate>Tue, 26 Mar 2019 10:20:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Apply-Map-Function/m-p/1561240#M742702</guid>
      <dc:creator>Hareeshkommineni</dc:creator>
      <dc:date>2019-03-26T10:20:04Z</dc:date>
    </item>
    <item>
      <title>Re: Apply Map Function</title>
      <link>https://community.qlik.com/t5/QlikView/Apply-Map-Function/m-p/1561244#M742703</link>
      <description>&lt;P&gt;I might have misunderstod you. In my example it returns null for the empty names, but if you want another value just change Null() to 'notnull'&lt;/P&gt;&lt;PRE&gt;Maptab:
 Mapping LOAD 
 	ID, 
 	IF(len(NAME)=0,'NotNull',NAME) 
 INLINE [
    ID, NAME
    1, A
    2, 
    3, C
    4, D
    5, 
    6, E
    7, F
    8, G
    9, H
];&lt;/PRE&gt;&lt;P&gt;Another approach could be exclued the empty rows in your map table&lt;/P&gt;&lt;PRE&gt; Maptab:
 Mapping LOAD * INLINE [
    ID, NAME
    1, A
    2, 
    3, C
    4, D
    5, 
    6, E
    7, F
    8, G
    9, H
]
&lt;STRONG&gt;WHERE
   Len(NAME) &amp;gt; 0&lt;BR /&gt;&lt;/STRONG&gt;;&lt;/PRE&gt;</description>
      <pubDate>Tue, 26 Mar 2019 10:26:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Apply-Map-Function/m-p/1561244#M742703</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2019-03-26T10:26:39Z</dc:date>
    </item>
    <item>
      <title>Re: Apply Map Function</title>
      <link>https://community.qlik.com/t5/QlikView/Apply-Map-Function/m-p/1561246#M742704</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 740px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/8835iFC257E601500672B/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Mar 2019 10:28:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Apply-Map-Function/m-p/1561246#M742704</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2019-03-26T10:28:04Z</dc:date>
    </item>
    <item>
      <title>Re: Apply Map Function</title>
      <link>https://community.qlik.com/t5/QlikView/Apply-Map-Function/m-p/1561250#M742705</link>
      <description>yeah its working thank you for your help</description>
      <pubDate>Tue, 26 Mar 2019 10:31:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Apply-Map-Function/m-p/1561250#M742705</guid>
      <dc:creator>Hareeshkommineni</dc:creator>
      <dc:date>2019-03-26T10:31:52Z</dc:date>
    </item>
  </channel>
</rss>

