<?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: Creating a list from an excel mapping in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Creating-a-list-from-an-excel-mapping/m-p/1790954#M1210628</link>
    <description>&lt;P&gt;One more version,&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;tab1:
CrossTable(Map,Value)
LOAD * INLINE [
    Cost Center, A23, B25, B27, D45, D22
    11, x, x, , , x
    12, x, x, , , x
    13, , , x, , 
    17, , , , x, 
    25, x, x, , , x
];

tab2:
NoConcatenate
LOAD [Cost Center], Map As Mapping
Resident tab1
Where Value='x';

Drop Table tab1;&lt;/LI-CODE&gt;</description>
    <pubDate>Fri, 12 Mar 2021 13:54:36 GMT</pubDate>
    <dc:creator>Saravanan_Desingh</dc:creator>
    <dc:date>2021-03-12T13:54:36Z</dc:date>
    <item>
      <title>Creating a list from an excel mapping</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-a-list-from-an-excel-mapping/m-p/1790943#M1210625</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I'm trying to add an excel mapping to my Qlikview report, to link Cost Centers to mapped item.&lt;/P&gt;&lt;P&gt;The excel spreadsheet looks like this:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="mapping.PNG" style="width: 180px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/51044iFB925620DE952BEA/image-size/small?v=v2&amp;amp;px=200" role="button" title="mapping.PNG" alt="mapping.PNG" /&gt;&lt;/span&gt;The results I'm aiming for, would be a list showing:&amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Cost Center&lt;/TD&gt;&lt;TD&gt;Mapping&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;11&lt;/TD&gt;&lt;TD&gt;A23-B25-D22&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;12&lt;/TD&gt;&lt;TD&gt;A23-B25-D22&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;13&lt;/TD&gt;&lt;TD&gt;B27&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;17&lt;/TD&gt;&lt;TD&gt;D45&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;25&lt;/TD&gt;&lt;TD&gt;A23-B25-D22&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;or:&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Cost Center&lt;/TD&gt;&lt;TD&gt;Mapping&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;11&lt;/TD&gt;&lt;TD&gt;A23&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;11&lt;/TD&gt;&lt;TD&gt;B25&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;11&lt;/TD&gt;&lt;TD&gt;D22&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;12&lt;/TD&gt;&lt;TD&gt;A23&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;12&lt;/TD&gt;&lt;TD&gt;B25&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;12&lt;/TD&gt;&lt;TD&gt;D22&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;13&lt;/TD&gt;&lt;TD&gt;B27&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;17&lt;/TD&gt;&lt;TD&gt;D45&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;D25&lt;/TD&gt;&lt;TD&gt;A23&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Fri, 12 Mar 2021 13:40:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-a-list-from-an-excel-mapping/m-p/1790943#M1210625</guid>
      <dc:creator>Oyandresen</dc:creator>
      <dc:date>2021-03-12T13:40:35Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a list from an excel mapping</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-a-list-from-an-excel-mapping/m-p/1790950#M1210626</link>
      <description>&lt;P&gt;Try this,&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;tab1:
CrossTable(Map,Value)
LOAD * INLINE [
    Cost Center, A23, B25, B27, D45, D22
    11, x, x, , , x
    12, x, x, , , x
    13, , , x, , 
    17, , , , x, 
    25, x, x, , , x
];

tab2:
NoConcatenate
LOAD [Cost Center], Concat(DISTINCT Map,'-') As Mapping
Resident tab1
Where Value='x'
Group By [Cost Center];

Drop Table tab1;&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 12 Mar 2021 13:51:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-a-list-from-an-excel-mapping/m-p/1790950#M1210626</guid>
      <dc:creator>Saravanan_Desingh</dc:creator>
      <dc:date>2021-03-12T13:51:56Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a list from an excel mapping</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-a-list-from-an-excel-mapping/m-p/1790952#M1210627</link>
      <description>&lt;P&gt;Output:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="commQV45.PNG" style="width: 147px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/51049i377F44BDD5547DEF/image-size/large?v=v2&amp;amp;px=999" role="button" title="commQV45.PNG" alt="commQV45.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Mar 2021 13:52:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-a-list-from-an-excel-mapping/m-p/1790952#M1210627</guid>
      <dc:creator>Saravanan_Desingh</dc:creator>
      <dc:date>2021-03-12T13:52:18Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a list from an excel mapping</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-a-list-from-an-excel-mapping/m-p/1790954#M1210628</link>
      <description>&lt;P&gt;One more version,&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;tab1:
CrossTable(Map,Value)
LOAD * INLINE [
    Cost Center, A23, B25, B27, D45, D22
    11, x, x, , , x
    12, x, x, , , x
    13, , , x, , 
    17, , , , x, 
    25, x, x, , , x
];

tab2:
NoConcatenate
LOAD [Cost Center], Map As Mapping
Resident tab1
Where Value='x';

Drop Table tab1;&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 12 Mar 2021 13:54:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-a-list-from-an-excel-mapping/m-p/1790954#M1210628</guid>
      <dc:creator>Saravanan_Desingh</dc:creator>
      <dc:date>2021-03-12T13:54:36Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a list from an excel mapping</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-a-list-from-an-excel-mapping/m-p/1790956#M1210629</link>
      <description>&lt;P&gt;Output:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="commQV46.PNG" style="width: 147px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/51050i7AF2DA5990A668D2/image-size/large?v=v2&amp;amp;px=999" role="button" title="commQV46.PNG" alt="commQV46.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Mar 2021 13:54:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-a-list-from-an-excel-mapping/m-p/1790956#M1210629</guid>
      <dc:creator>Saravanan_Desingh</dc:creator>
      <dc:date>2021-03-12T13:54:59Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a list from an excel mapping</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-a-list-from-an-excel-mapping/m-p/1790964#M1210630</link>
      <description>&lt;P&gt;Thanks for the swift response!&lt;/P&gt;&lt;P&gt;I will try that &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Mar 2021 14:07:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-a-list-from-an-excel-mapping/m-p/1790964#M1210630</guid>
      <dc:creator>Oyandresen</dc:creator>
      <dc:date>2021-03-12T14:07:01Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a list from an excel mapping</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-a-list-from-an-excel-mapping/m-p/1790969#M1210631</link>
      <description>&lt;P&gt;This solved my issue!&lt;/P&gt;&lt;P&gt;Thanks again!&lt;/P&gt;</description>
      <pubDate>Fri, 12 Mar 2021 14:19:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-a-list-from-an-excel-mapping/m-p/1790969#M1210631</guid>
      <dc:creator>Oyandresen</dc:creator>
      <dc:date>2021-03-12T14:19:23Z</dc:date>
    </item>
  </channel>
</rss>

