<?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 Map Items in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Map-Items/m-p/147925#M26295</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you could post your try with the ApplyMap function, it would be easier to comment on what you need to change in your code.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 28 Jun 2009 22:41:20 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2009-06-28T22:41:20Z</dc:date>
    <item>
      <title>Map Items</title>
      <link>https://community.qlik.com/t5/QlikView/Map-Items/m-p/147922#M26292</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello at all friends of QV !! [:)]&lt;/P&gt;&lt;P&gt;I need to mapping the Item and visualizing in list box Jus the Item with a one value.&lt;/P&gt;&lt;P&gt;In the example exists a items undefined so when the item is undefined need to write 'undefined' ;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;item:&lt;BR /&gt;Load * inline [&lt;BR /&gt;item , family&lt;BR /&gt;item2 , family1&lt;BR /&gt;item12 , family1&lt;BR /&gt;item15 , family1&lt;BR /&gt;item20 , family2&lt;BR /&gt;item22 , family2&lt;BR /&gt;item25 , family2&lt;BR /&gt;item30 , family3&lt;BR /&gt;&lt;BR /&gt;];&lt;BR /&gt;&lt;BR /&gt;fam:&lt;BR /&gt;&lt;BR /&gt;join Load * Inline [&lt;BR /&gt;family , line&lt;BR /&gt;family1 , line1&lt;BR /&gt;family2 , line2&lt;BR /&gt;family3 , line3&lt;BR /&gt;&lt;BR /&gt;];&lt;BR /&gt;&lt;BR /&gt;myValue:&lt;BR /&gt;&lt;BR /&gt;Load * inline [&lt;BR /&gt;item , qty, amount&lt;BR /&gt;&lt;BR /&gt;item2 , 10, 100&lt;BR /&gt;item3, 40, 400&lt;BR /&gt;item20 , 60, 80&lt;BR /&gt;item400, 80, 90&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks, best regards&lt;/P&gt;&lt;P&gt;Sl&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 27 Jun 2009 19:12:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Map-Items/m-p/147922#M26292</guid>
      <dc:creator />
      <dc:date>2009-06-27T19:12:57Z</dc:date>
    </item>
    <item>
      <title>Map Items</title>
      <link>https://community.qlik.com/t5/QlikView/Map-Items/m-p/147923#M26293</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is one possible sollution:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;item:&lt;BR /&gt;Load * inline [&lt;BR /&gt;item , family&lt;BR /&gt;item2 , family1&lt;BR /&gt;item12 , family1&lt;BR /&gt;item15 , family1&lt;BR /&gt;item20 , family2&lt;BR /&gt;item22 , family2&lt;BR /&gt;item25 , family2&lt;BR /&gt;item30 , family3&lt;BR /&gt;&lt;BR /&gt;];&lt;BR /&gt;&lt;BR /&gt;fam:&lt;BR /&gt;&lt;BR /&gt;join Load * Inline [&lt;BR /&gt;family , line&lt;BR /&gt;family1 , line1&lt;BR /&gt;family2 , line2&lt;BR /&gt;family3 , line3&lt;BR /&gt;&lt;BR /&gt;];&lt;BR /&gt;&lt;BR /&gt;myValue:&lt;BR /&gt;&lt;BR /&gt;Load * inline [&lt;BR /&gt;item , qty, amount&lt;BR /&gt;&lt;BR /&gt;item2 , 10, 100&lt;BR /&gt;item3, 40, 400&lt;BR /&gt;item20 , 60, 80&lt;BR /&gt;item400, 80, 90&lt;BR /&gt;];&lt;BR /&gt;// Extra code :&lt;BR /&gt;Left Join (myValue) Load * Resident item;&lt;BR /&gt;NewValue:&lt;BR /&gt;Noconcatenate Load&lt;BR /&gt; item,&lt;BR /&gt; if(IsNull(family), 'undefined', family) as family,&lt;BR /&gt; if(IsNull(line), 'undefined', line) as line,&lt;BR /&gt; qty,&lt;BR /&gt; amount&lt;BR /&gt;Resident myValue;&lt;BR /&gt;Drop table myValue;&lt;BR /&gt;Drop table item; // in this case&lt;BR /&gt;Drop table fam; // in this case&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Also take a look in the QlikView Help pages at Mapping Load and the ApplyMap() (especially the 3th parameter) function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Jun 2009 20:07:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Map-Items/m-p/147923#M26293</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-06-28T20:07:28Z</dc:date>
    </item>
    <item>
      <title>Map Items</title>
      <link>https://community.qlik.com/t5/QlikView/Map-Items/m-p/147924#M26294</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;but the mapping and the apply oesn'work correctly&lt;/P&gt;&lt;P&gt;I need the Applications shows the list box GUST with the item, family and line true and, when item ir family or lineare false ( not prenet in master) the list&lt;/P&gt;&lt;P&gt;Im interested to a mapping load and Apply load ...I tryed but doesn't work correctly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you could suggest a script by mapping load..&lt;/P&gt;&lt;P&gt;Thanks, nest regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--&lt;/P&gt;&lt;P&gt;Slash &lt;IMG alt="Smile" src="http://community.qlik.com/emoticons/emotion-1.gif" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Jun 2009 21:05:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Map-Items/m-p/147924#M26294</guid>
      <dc:creator />
      <dc:date>2009-06-28T21:05:00Z</dc:date>
    </item>
    <item>
      <title>Map Items</title>
      <link>https://community.qlik.com/t5/QlikView/Map-Items/m-p/147925#M26295</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you could post your try with the ApplyMap function, it would be easier to comment on what you need to change in your code.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Jun 2009 22:41:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Map-Items/m-p/147925#M26295</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-06-28T22:41:20Z</dc:date>
    </item>
    <item>
      <title>Map Items</title>
      <link>https://community.qlik.com/t5/QlikView/Map-Items/m-p/147926#M26296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SET ThousandSep='.';&lt;BR /&gt;SET DecimalSep=',';&lt;BR /&gt;SET MoneyThousandSep='.';&lt;BR /&gt;SET MoneyDecimalSep=',';&lt;BR /&gt;SET MoneyFormat='€ #.##0,00;-€ #.##0,00';&lt;BR /&gt;SET TimeFormat='h.mm.ss';&lt;BR /&gt;SET DateFormat='DD/MM/YYYY';&lt;BR /&gt;SET TimestampFormat='DD/MM/YYYY h.mm.ss[.fff]';&lt;BR /&gt;SET MonthNames='gen;feb;mar;apr;mag;giu;lug;ago;set;ott;nov;dic';&lt;BR /&gt;SET DayNames='lun;mar;mer;gio;ven;sab;dom';&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;item:&lt;BR /&gt;Load * inline [&lt;BR /&gt;item , family&lt;BR /&gt;item2 , family1&lt;BR /&gt;item12 , family1&lt;BR /&gt;item15 , family1&lt;BR /&gt;item20 , family2&lt;BR /&gt;item22 , family2&lt;BR /&gt;item25 , family2&lt;BR /&gt;item30 , family3&lt;BR /&gt;&lt;BR /&gt;];&lt;BR /&gt;&lt;BR /&gt;fam:&lt;BR /&gt;&lt;BR /&gt;join Load * Inline [&lt;BR /&gt;family , line&lt;BR /&gt;family1 , line1&lt;BR /&gt;family2 , line2&lt;BR /&gt;family3 , line3&lt;BR /&gt;&lt;BR /&gt;];&lt;BR /&gt;&lt;BR /&gt;myValue:&lt;BR /&gt;&lt;BR /&gt;Load * inline [&lt;BR /&gt;item , qty, amount&lt;BR /&gt;&lt;BR /&gt;item2 , 10, 100&lt;BR /&gt;item3, 40, 400&lt;BR /&gt;item20 , 60, 80&lt;BR /&gt;item400, 80, 90&lt;BR /&gt;];&lt;BR /&gt;&lt;BR /&gt;myMap:&lt;BR /&gt;&lt;BR /&gt;mapping Load distinct&lt;BR /&gt;item as it ,&lt;BR /&gt;family as f&lt;BR /&gt;resident item;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;load&lt;BR /&gt;item,&lt;BR /&gt;ApplyMap('myMap' , item) as fam&lt;BR /&gt;resident myValue;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jun 2009 02:10:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Map-Items/m-p/147926#M26296</guid>
      <dc:creator />
      <dc:date>2009-06-29T02:10:14Z</dc:date>
    </item>
    <item>
      <title>Map Items</title>
      <link>https://community.qlik.com/t5/QlikView/Map-Items/m-p/147927#M26297</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;some help ?&lt;/P&gt;&lt;P&gt;Thanks, Best Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Slash &lt;IMG alt="Smile" src="http://community.qlik.com/emoticons/emotion-1.gif" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Jun 2009 01:06:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Map-Items/m-p/147927#M26297</guid>
      <dc:creator />
      <dc:date>2009-06-30T01:06:53Z</dc:date>
    </item>
  </channel>
</rss>

