<?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: Using Applymap() function in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Using-Applymap-function/m-p/1522254#M37459</link>
    <description>Actually another problem appeared: Now every Partnumber is appearing twice.&lt;BR /&gt;How comes that and how to get rid of it?</description>
    <pubDate>Tue, 18 Dec 2018 15:25:39 GMT</pubDate>
    <dc:creator>alexsid-qlik</dc:creator>
    <dc:date>2018-12-18T15:25:39Z</dc:date>
    <item>
      <title>Using Applymap() function</title>
      <link>https://community.qlik.com/t5/App-Development/Using-Applymap-function/m-p/1522238#M37452</link>
      <description>&lt;P&gt;Dear community,&lt;/P&gt;&lt;P&gt;I am trying to use the ApplyMap() function. But it does not create the information I need.&lt;/P&gt;&lt;P&gt;What I want is to connect my Partnumber with the respective name.&lt;/P&gt;&lt;P&gt;I load the mapping data first.&lt;/P&gt;&lt;PRE&gt;Map1:
Mapping LOAD
    Partnumber,
    Name
FROM MapData;&lt;/PRE&gt;&lt;P&gt;Then in my main data load I use this&lt;/P&gt;&lt;PRE&gt;LOAD 
Partnumber, 
ApplyMap('Map1', Partnumber, null()) as Name
FROM MainData;&lt;/PRE&gt;&lt;P&gt;But it does not connect! What am I doing wrong?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would be glad for some assistance.&lt;/P&gt;&lt;P&gt;Best, Alex&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 07:01:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Using-Applymap-function/m-p/1522238#M37452</guid>
      <dc:creator>alexsid-qlik</dc:creator>
      <dc:date>2024-11-16T07:01:03Z</dc:date>
    </item>
    <item>
      <title>Re: Using Applymap() function</title>
      <link>https://community.qlik.com/t5/App-Development/Using-Applymap-function/m-p/1522240#M37453</link>
      <description>&lt;P&gt;What you have looks OK to me. What results are you getting? If you're getting nulls, perhaps the Partnumber from MainData doesn't match the Partnumber from MapData.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Dec 2018 15:01:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Using-Applymap-function/m-p/1522240#M37453</guid>
      <dc:creator>m_woolf</dc:creator>
      <dc:date>2018-12-18T15:01:26Z</dc:date>
    </item>
    <item>
      <title>Re: Using Applymap() function</title>
      <link>https://community.qlik.com/t5/App-Development/Using-Applymap-function/m-p/1522241#M37454</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/14139"&gt;@m_woolf&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;For some Partnumbers I get the matching Name. But additional data like Sales is null.&lt;/P&gt;&lt;P&gt;Then I get the same Partnumbers but without matching Name. Instead the Sales appears. So basically is the two table are not concatenated.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Should I try a concatenate load?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Dec 2018 15:05:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Using-Applymap-function/m-p/1522241#M37454</guid>
      <dc:creator>alexsid-qlik</dc:creator>
      <dc:date>2018-12-18T15:05:40Z</dc:date>
    </item>
    <item>
      <title>Re: Using Applymap() function</title>
      <link>https://community.qlik.com/t5/App-Development/Using-Applymap-function/m-p/1522246#M37456</link>
      <description>Looking at the scrip,t the applymap is not the issue.&lt;BR /&gt;It sounds like a data modelling issue or possibly an issue with the part numbers not matching. If the part numbers look the same it maybe worth adding a trim() on load to rule out blank spaces.&lt;BR /&gt;&lt;BR /&gt;Mark</description>
      <pubDate>Tue, 18 Dec 2018 15:09:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Using-Applymap-function/m-p/1522246#M37456</guid>
      <dc:creator>Mark_Little</dc:creator>
      <dc:date>2018-12-18T15:09:30Z</dc:date>
    </item>
    <item>
      <title>Re: Using Applymap() function</title>
      <link>https://community.qlik.com/t5/App-Development/Using-Applymap-function/m-p/1522250#M37457</link>
      <description>&lt;P&gt;Hey Mark,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;you were right!&lt;/P&gt;&lt;P&gt;I did not know about the trim() function. Very useful!&lt;/P&gt;&lt;P&gt;Thanks a lot&lt;/P&gt;</description>
      <pubDate>Tue, 18 Dec 2018 15:12:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Using-Applymap-function/m-p/1522250#M37457</guid>
      <dc:creator>alexsid-qlik</dc:creator>
      <dc:date>2018-12-18T15:12:51Z</dc:date>
    </item>
    <item>
      <title>Re: Using Applymap() function</title>
      <link>https://community.qlik.com/t5/App-Development/Using-Applymap-function/m-p/1522251#M37458</link>
      <description>Seems to be the case...Somehow the numbers included blank spaces.&lt;BR /&gt;Thank you!</description>
      <pubDate>Tue, 18 Dec 2018 15:14:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Using-Applymap-function/m-p/1522251#M37458</guid>
      <dc:creator>alexsid-qlik</dc:creator>
      <dc:date>2018-12-18T15:14:01Z</dc:date>
    </item>
    <item>
      <title>Re: Using Applymap() function</title>
      <link>https://community.qlik.com/t5/App-Development/Using-Applymap-function/m-p/1522254#M37459</link>
      <description>Actually another problem appeared: Now every Partnumber is appearing twice.&lt;BR /&gt;How comes that and how to get rid of it?</description>
      <pubDate>Tue, 18 Dec 2018 15:25:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Using-Applymap-function/m-p/1522254#M37459</guid>
      <dc:creator>alexsid-qlik</dc:creator>
      <dc:date>2018-12-18T15:25:39Z</dc:date>
    </item>
  </channel>
</rss>

