<?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: Urgent Advice in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Urgent-Advice/m-p/831710#M470156</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sue,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do you mean like this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/88498_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 05 Jun 2015 12:07:57 GMT</pubDate>
    <dc:creator>awhitfield</dc:creator>
    <dc:date>2015-06-05T12:07:57Z</dc:date>
    <item>
      <title>Urgent Advice</title>
      <link>https://community.qlik.com/t5/QlikView/Urgent-Advice/m-p/831707#M470153</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 very new to Qlikview and I was hoping somebody can help me with a query and let me know if what I want to do is even possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have names with ID's(Names,ID) corresponding to each name. On the second data sheet the ID's (ID1) are only available but I need to be able to show the correlation name to the ID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The file is attached below if anybody could give me some advice.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jun 2015 16:01:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Urgent-Advice/m-p/831707#M470153</guid>
      <dc:creator />
      <dc:date>2015-06-04T16:01:12Z</dc:date>
    </item>
    <item>
      <title>Re: Urgent Advice</title>
      <link>https://community.qlik.com/t5/QlikView/Urgent-Advice/m-p/831708#M470154</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would suggest you doing this in the backend &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use applymap &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The &lt;SPAN class="Bold"&gt;ApplyMap&lt;/SPAN&gt; function is used for mapping any expression to a previously loaded mapping table. The syntax is:&lt;/P&gt;&lt;P class="syntax"&gt;&lt;A name="kanchor833"&gt;&lt;/A&gt;&lt;A name="applymap"&gt;&lt;/A&gt;&lt;SPAN class="Bold"&gt;applymap(&lt;/SPAN&gt;&lt;SPAN class="Italic"&gt;'mapname', expr [ , defaultexpr ] &lt;/SPAN&gt;&lt;SPAN class="Bold"&gt;)&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;where:&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Italic"&gt;mapname&lt;/SPAN&gt; is the name of a mapping table that has previously been created through the &lt;SPAN class="Bold"&gt;mapping load&lt;/SPAN&gt; or the &lt;SPAN class="Bold"&gt;mapping select&lt;/SPAN&gt; statement (see &lt;A class="MCXref_0"&gt;&lt;EM&gt;Mapping&lt;/EM&gt;&lt;/A&gt;). Its name must be enclosed by single, straight &lt;A class="MCXref_0"&gt;&lt;EM&gt;Quotation Marks in Scripting&lt;/EM&gt;&lt;/A&gt;. &lt;/P&gt;&lt;P&gt;&lt;SPAN class="Italic"&gt;expr&lt;/SPAN&gt; is the expression, the result of which should be mapped. &lt;/P&gt;&lt;P&gt;&lt;SPAN class="Italic"&gt;defaultexpr&lt;/SPAN&gt; is an optional expression which will be used as a default mapping value if the mapping table does not contain a matching value for &lt;SPAN class="Italic"&gt;expr&lt;/SPAN&gt;. If no default value is given, the value of &lt;SPAN class="Italic"&gt;expr&lt;/SPAN&gt; will be returned as is. &lt;/P&gt;&lt;P class="example"&gt;Examples:&lt;/P&gt;&lt;P class="Code"&gt;// Assume the following mapping table: &lt;/P&gt;&lt;P class="Code"&gt;map1: &lt;/P&gt;&lt;P class="Code"&gt;mapping load * inline [ &lt;/P&gt;&lt;P class="Code"&gt;x, y &lt;/P&gt;&lt;P class="Code"&gt;1, one &lt;/P&gt;&lt;P class="Code"&gt;2, two &lt;/P&gt;&lt;P class="Code"&gt;3, three ] ; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;ApplyMap ('map1', 2 )&lt;/SPAN&gt; returns ' two'&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;ApplyMap ('map1', 4 )&lt;/SPAN&gt; returns 4&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;ApplyMap ('map1', 5, 'xxx')&lt;/SPAN&gt; returns 'xxx'&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;ApplyMap ('map1', 1, 'xxx')&lt;/SPAN&gt; returns 'one'&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;ApplyMap ('map1', 5, null( ) )&lt;/SPAN&gt; returns NULL&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;ApplyMap ('map1', 3, null( ) )&lt;/SPAN&gt; returns 'three'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jun 2015 17:26:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Urgent-Advice/m-p/831708#M470154</guid>
      <dc:creator>ramoncova06</dc:creator>
      <dc:date>2015-06-04T17:26:39Z</dc:date>
    </item>
    <item>
      <title>Re: Urgent Advice</title>
      <link>https://community.qlik.com/t5/QlikView/Urgent-Advice/m-p/831709#M470155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Make table box and include ID, Name, and Name1.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jun 2015 19:05:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Urgent-Advice/m-p/831709#M470155</guid>
      <dc:creator>m_woolf</dc:creator>
      <dc:date>2015-06-04T19:05:18Z</dc:date>
    </item>
    <item>
      <title>Re: Urgent Advice</title>
      <link>https://community.qlik.com/t5/QlikView/Urgent-Advice/m-p/831710#M470156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sue,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do you mean like this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/88498_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Jun 2015 12:07:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Urgent-Advice/m-p/831710#M470156</guid>
      <dc:creator>awhitfield</dc:creator>
      <dc:date>2015-06-05T12:07:57Z</dc:date>
    </item>
  </channel>
</rss>

