<?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 to multiple excel files in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Using-Applymap-to-multiple-excel-files/m-p/1449189#M35374</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, because the question that i've posted is just a scaled down example to what i am really doing. Your solution would achieve the same results, &lt;SPAN style="font-size: 13.3333px;"&gt;i would be able to find all of the HostNameFinal that exists along with the extractedvalue&lt;/SPAN&gt;, but with what i am really working on, the HostNameFinal has HostNames that could not be found in the extractedvalue column and they have to be labeled to have an compliance score of 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So i am assuming that's why i have to start by mapping the HostNameFinal to the ExtractedValue so that i can deal with the rest of the HostNameFinal that are not found. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 Dec 2017 10:00:52 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2017-12-13T10:00:52Z</dc:date>
    <item>
      <title>Using Applymap to multiple excel files</title>
      <link>https://community.qlik.com/t5/App-Development/Using-Applymap-to-multiple-excel-files/m-p/1449169#M35354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, i'm looking to map columns from one excel file to multiple excel files in a 'For Loop' using the Applymap() function. Is there an example of how this could be achieved?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;E.g:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Multiple Mapping.PNG" class="image-5 jive-image" height="269" src="/legacyfs/online/186220_Multiple Mapping.PNG" style="height: 268.911px; width: 513px;" width="513" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Objective End Result:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="EndResult.PNG" class="image-4 jive-image" height="225" src="https://community.qlik.com/legacyfs/online/186218_EndResult.PNG" style="height: 225.394px; width: 397px;" width="397" /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;My code now for the Reports is something like:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;------------------------------------------------&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;FOR Each File1 in filelist ('lib://ExcelFiles/1 Templates\Report 2017*.xlsx')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SumReportOct:&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp; "ExtractedValue",&lt;/P&gt;&lt;P&gt;&amp;nbsp; "ReturnedClusterName"&lt;/P&gt;&lt;P&gt;&amp;nbsp; "Compliance Score"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FROM '$(File1)' (ooxml, embedded labels, table is [Overall_Score]);&lt;/P&gt;&lt;P&gt;NEXT;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;------------------------------------------------&lt;/SPAN&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;My code now for the Asset List is something like:&lt;/P&gt;&lt;P&gt;------------------------------------------------&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ClusterToClusterMapping:&lt;/P&gt;&lt;P&gt;Mapping Load&lt;/P&gt;&lt;P&gt;"ReturnedClusterName",&lt;/P&gt;&lt;P&gt;"Compliance Score"&lt;/P&gt;&lt;P&gt;Resident SumReportOct;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AssetListComplianceScoreHostZ:&lt;/P&gt;&lt;P&gt;Mapping Load Distinct&lt;/P&gt;&lt;P&gt;"Extractedvalue",&lt;/P&gt;&lt;P&gt;"Compliance Score"&lt;/P&gt;&lt;P&gt;Resident SumReportOct;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AssetList1:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load*,&lt;/P&gt;&lt;P&gt;ApplyMap('AssetListComplianceScoreHostZ',"HostNameFinal",ApplyMap('AssetListComplianceScoreHostZ',"&lt;SPAN style="font-size: 13.3333px;"&gt;Cluster Name&lt;/SPAN&gt;"&lt;/P&gt;&lt;P&gt;,&lt;SPAN style="font-size: 10pt;"&gt;ApplyMap('ClusterToClusterMapping',"&lt;SPAN style="font-size: 13.3333px;"&gt;Cluster Name&lt;/SPAN&gt;",'Unknown'))) as "Compliance Score Final"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt; &lt;SPAN style="font-size: 13.3333px;"&gt;"HostNameFinal" &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;as "HostNameFinal"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt; "Cluster Name" as "Cluster Name"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;FROM [lib://ExcelFiles/1 Templates\Asset Data October 2017.xlsx](ooxml, embedded labels, table is Server);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;------------------------------------------------&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Dec 2017 04:15:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Using-Applymap-to-multiple-excel-files/m-p/1449169#M35354</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-12-08T04:15:37Z</dc:date>
    </item>
    <item>
      <title>Re: Using Applymap to multiple excel files</title>
      <link>https://community.qlik.com/t5/App-Development/Using-Applymap-to-multiple-excel-files/m-p/1449170#M35355</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I beleive the Report_201705 is your excel file or QVD name?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in this case use something like below to achieve the result&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;[Host Name],&lt;/P&gt;&lt;P&gt;[Compliance Score],&lt;/P&gt;&lt;P&gt;Right(Filebasename(),5) as Month&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Report*.qvd&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;(qvd); &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Dec 2017 04:28:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Using-Applymap-to-multiple-excel-files/m-p/1449170#M35355</guid>
      <dc:creator>techvarun</dc:creator>
      <dc:date>2017-12-08T04:28:48Z</dc:date>
    </item>
    <item>
      <title>Re: Using Applymap to multiple excel files</title>
      <link>https://community.qlik.com/t5/App-Development/Using-Applymap-to-multiple-excel-files/m-p/1449171#M35356</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Report_201705 would be the excel. Thanks for suggesting on how to take the first 5 characters from the right of the filename. But how can i do an Applymap() function to map the row "Host Name" in my asset list to all of the Reports and get the compliance score for each month?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Dec 2017 06:25:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Using-Applymap-to-multiple-excel-files/m-p/1449171#M35356</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-12-08T06:25:16Z</dc:date>
    </item>
    <item>
      <title>Re: Using Applymap to multiple excel files</title>
      <link>https://community.qlik.com/t5/App-Development/Using-Applymap-to-multiple-excel-files/m-p/1449172#M35357</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you don't need an applymap() here just loading (maybe per explicit concatenate-statement) the files will be enough by adding the period like suggested from Varun.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Dec 2017 08:07:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Using-Applymap-to-multiple-excel-files/m-p/1449172#M35357</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2017-12-08T08:07:42Z</dc:date>
    </item>
    <item>
      <title>Re: Using Applymap to multiple excel files</title>
      <link>https://community.qlik.com/t5/App-Development/Using-Applymap-to-multiple-excel-files/m-p/1449173#M35358</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, i have updated my question, hopefully it would be better to understand why there's a need for ApplyMap().&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Dec 2017 09:58:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Using-Applymap-to-multiple-excel-files/m-p/1449173#M35358</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-12-08T09:58:51Z</dc:date>
    </item>
    <item>
      <title>Re: Using Applymap to multiple excel files</title>
      <link>https://community.qlik.com/t5/App-Development/Using-Applymap-to-multiple-excel-files/m-p/1449174#M35359</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think I would do something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mapHost: mapping load HostNameFinal, [Cluster Name] &lt;/P&gt;&lt;P&gt;FROM [lib://ExcelFiles/1 Templates\Asset Data October 2017.xlsx](ooxml, embedded labels, table is Server);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mapCluster: mapping load [Cluster Name], HostNameFinal&lt;/P&gt;&lt;P&gt;FROM [lib://ExcelFiles/1 Templates\Asset Data October 2017.xlsx](ooxml, embedded labels, table is Server);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FOR Each File1 in filelist ('lib://ExcelFiles/1 Templates\Report 2017*.xlsx')&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; final:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; load &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ExtractedValue, [Compliance Score], right(filebasename(), 6) as YearMonth,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; applymap('mapHost', ExtractedValue,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; applymap('mapCluster', ExtractedValue, ExtractedValue)) as ExtractedValue2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from '$(File1)' (ooxml, embedded labels, table is [Overall_Score]);&lt;/P&gt;&lt;P&gt;next&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Dec 2017 12:13:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Using-Applymap-to-multiple-excel-files/m-p/1449174#M35359</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2017-12-08T12:13:33Z</dc:date>
    </item>
    <item>
      <title>Re: Using Applymap to multiple excel files</title>
      <link>https://community.qlik.com/t5/App-Development/Using-Applymap-to-multiple-excel-files/m-p/1449175#M35360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, thanks for suggesting this solution, but my base has to start by mapping the HostNameFinal to the ExtractedValue. Are there any other ways to go around this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Dec 2017 02:10:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Using-Applymap-to-multiple-excel-files/m-p/1449175#M35360</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-12-11T02:10:50Z</dc:date>
    </item>
    <item>
      <title>Re: Using Applymap to multiple excel files</title>
      <link>https://community.qlik.com/t5/App-Development/Using-Applymap-to-multiple-excel-files/m-p/1449176#M35361</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;PFA&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/186377_Capture.PNG" style="height: 290px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Pradosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Dec 2017 06:25:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Using-Applymap-to-multiple-excel-files/m-p/1449176#M35361</guid>
      <dc:creator>pradosh_thakur</dc:creator>
      <dc:date>2017-12-11T06:25:42Z</dc:date>
    </item>
    <item>
      <title>Re: Using Applymap to multiple excel files</title>
      <link>https://community.qlik.com/t5/App-Development/Using-Applymap-to-multiple-excel-files/m-p/1449177#M35362</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this is the code. Change the code a bit by replacing inline load with your table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Report 201705]: &lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ExtractedValue, Compliance Score&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; BIEW01, 100&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ARKW01V, 98&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CRMAW01C, 95&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Report 201706]:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ExtractedValue, Compliance Score&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; BIEW01C, 95&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ARKW01V, 100&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CRMAW01V, 97&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Report 201707]:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ExtractedValue, Compliance Score&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; BIEW01, 98&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ARKW01C, 99&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CRMAW01V, 91&lt;/P&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;&lt;P&gt;for i = NoOfTables() - 1 to 0 step - 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; let vTable = tablename($(i));&lt;/P&gt;&lt;P&gt;IF WildMatch('$(vTable)','Report*') then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Load *, alt(Lookup('Compliance Score','ExtractedValue', HostNameFinal, '$(vTable)'),Lookup('Compliance Score','ExtractedValue', ClusterName, '$(vTable)')) as Final,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Right('$(vTable)',6) as Month INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; HostNameFinal, ClusterName&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; BIEW01, BIEW01C&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ARKW01V, ARKW01C&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CRMAW01V, CRMAW01C&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;drop table '$(vTable)';&lt;/P&gt;&lt;P&gt;endif &lt;/P&gt;&lt;P&gt;next i;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Pradosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Dec 2017 06:27:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Using-Applymap-to-multiple-excel-files/m-p/1449177#M35362</guid>
      <dc:creator>pradosh_thakur</dc:creator>
      <dc:date>2017-12-11T06:27:49Z</dc:date>
    </item>
    <item>
      <title>Re: Using Applymap to multiple excel files</title>
      <link>https://community.qlik.com/t5/App-Development/Using-Applymap-to-multiple-excel-files/m-p/1449178#M35363</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why? Did you try my suggestion and it really differ from your expected results? What are these differences?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Dec 2017 07:38:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Using-Applymap-to-multiple-excel-files/m-p/1449178#M35363</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2017-12-11T07:38:03Z</dc:date>
    </item>
    <item>
      <title>Re: Using Applymap to multiple excel files</title>
      <link>https://community.qlik.com/t5/App-Development/Using-Applymap-to-multiple-excel-files/m-p/1449179#M35364</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi thanks for suggesting this solution, but how make it such in a way that it loops through all of the reports in the directory?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Dec 2017 02:04:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Using-Applymap-to-multiple-excel-files/m-p/1449179#M35364</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-12-13T02:04:25Z</dc:date>
    </item>
    <item>
      <title>Re: Using Applymap to multiple excel files</title>
      <link>https://community.qlik.com/t5/App-Development/Using-Applymap-to-multiple-excel-files/m-p/1449180#M35365</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use a for loop to load all the file with 'Report *'&amp;nbsp; than use the below loop to map them to Asset list table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Pradosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Dec 2017 03:31:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Using-Applymap-to-multiple-excel-files/m-p/1449180#M35365</guid>
      <dc:creator>pradosh_thakur</dc:creator>
      <dc:date>2017-12-13T03:31:08Z</dc:date>
    </item>
    <item>
      <title>Re: Using Applymap to multiple excel files</title>
      <link>https://community.qlik.com/t5/App-Development/Using-Applymap-to-multiple-excel-files/m-p/1449181#M35366</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Right, if i do a for loop for all of the reports, how would i be able to retrieve the date then?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's my current code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FOR Each File in filelist ('lib://Qlik Loop/Report 20*.xlsx')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Reports]: &lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ExtractedValue,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Compliance Score (%)" as "Compliance Score"&lt;/P&gt;&lt;P&gt;FROM '$(File)' (ooxml, embedded labels, table is [Overall]);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for i = NoOfTables() - 1 to 0 step - 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; let vTable = tablename($(i));&lt;/P&gt;&lt;P&gt;IF WildMatch('$(vTable)','Report*') then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Load *, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; alt(Lookup('Compliance Score','ExtractedValue', HostNameFinal, '$(vTable)'),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Lookup('Compliance Score','ExtractedValue', ClusterName, '$(vTable)')) as Final,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; Right('$(vTable)',6) as Month INLINE [&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; HostNameFinal, ClusterName&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; BIEW01, BIEW01C&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ARKW01V, ARKW01C&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CRMAW01V, CRMAW01C&lt;/P&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;&lt;P&gt;drop table '$(vTable)';&lt;/P&gt;&lt;P&gt;endif &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;next i;&lt;/P&gt;&lt;P&gt;NEXT;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Dec 2017 06:34:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Using-Applymap-to-multiple-excel-files/m-p/1449181#M35366</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-12-13T06:34:17Z</dc:date>
    </item>
    <item>
      <title>Re: Using Applymap to multiple excel files</title>
      <link>https://community.qlik.com/t5/App-Development/Using-Applymap-to-multiple-excel-files/m-p/1449182#M35367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Try this&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;dummy:&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;load * inline[&lt;/P&gt;&lt;P style="font-family: inherit; font-size: 13.3333px; font-style: inherit; font-weight: inherit;"&gt;ExtractedValue, &lt;SPAN style="font-family: inherit; font-size: 13.3333px; font-style: inherit; font-weight: inherit;"&gt;Compliance Score&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: inherit; font-size: 13.3333px; font-style: inherit; font-weight: inherit;"&gt;&lt;SPAN style="font-family: inherit; font-size: 13.3333px; font-style: inherit; font-weight: inherit;"&gt;dummy, dummy&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: inherit; font-size: 13.3333px; font-style: inherit; font-weight: inherit;"&gt;&lt;SPAN style="font-family: inherit; font-size: 13.3333px; font-style: inherit; font-weight: inherit;"&gt;];&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;FOR Each File in filelist ('lib://Qlik Loop/Report 20*.xlsx')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;[Reports]:&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;NoConcatenate&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;LOAD&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ExtractedValue,&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Compliance Score (%)" as "Compliance Score"&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;FROM '$(File)' (ooxml, embedded labels, table is [Overall]);&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;NEXT;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;for i = NoOfTables() - 1 to 0 step - 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; let vTable = tablename($(i));&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;IF WildMatch('$(vTable)','Report*') then&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp; Load *,&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&amp;nbsp; &lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp; alt(Lookup('Compliance Score','ExtractedValue', HostNameFinal, '$(vTable)'),&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp; Lookup('Compliance Score','ExtractedValue', ClusterName, '$(vTable)')) as Final,&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&amp;nbsp; &lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&amp;nbsp; Right('$(vTable)',6) as Month INLINE [&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; HostNameFinal, ClusterName&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; BIEW01, BIEW01C&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ARKW01V, ARKW01C&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CRMAW01V, CRMAW01C&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;drop table '$(vTable)';&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;endif&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;next i;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;regards&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Pradosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Dec 2017 06:48:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Using-Applymap-to-multiple-excel-files/m-p/1449182#M35367</guid>
      <dc:creator>pradosh_thakur</dc:creator>
      <dc:date>2017-12-13T06:48:07Z</dc:date>
    </item>
    <item>
      <title>Re: Using Applymap to multiple excel files</title>
      <link>https://community.qlik.com/t5/App-Development/Using-Applymap-to-multiple-excel-files/m-p/1449183#M35368</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, i'm getting this as an result to your codes:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="186762" alt="qlikdate.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/186762_qlikdate.PNG" style="height: 305px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;It seems like the month is getting it's fields based on the table name that was created in the data load editor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FOR Each File in filelist ('lib://Qlik Loop/Report 20*.xlsx')&lt;/P&gt;&lt;P&gt;[Reports]: &lt;SPAN style="color: #ff0000;"&gt;&amp;lt;-------- From here&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ExtractedValue,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Compliance Score (%)" as "Compliance Score"&lt;/P&gt;&lt;P&gt;FROM '$(File)' (ooxml, embedded labels, table is [Overall]);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Dec 2017 07:02:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Using-Applymap-to-multiple-excel-files/m-p/1449183#M35368</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-12-13T07:02:20Z</dc:date>
    </item>
    <item>
      <title>Re: Using Applymap to multiple excel files</title>
      <link>https://community.qlik.com/t5/App-Development/Using-Applymap-to-multiple-excel-files/m-p/1449184#M35369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;Try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;dummy:&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;load * inline[&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit; color: #3d3d3d;"&gt;ExtractedValue, &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;Compliance Score&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;dummy, dummy&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;];&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;FOR Each File in filelist ('lib://Qlik Loop/Report 20*.xlsx')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;NoConcatenate&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;LOAD&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ExtractedValue,&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Compliance Score (%)" as "Compliance Score"&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;FROM '$(File)' (ooxml, embedded labels, table is [Overall]);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;NEXT;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;for i = NoOfTables() - 1 to 0 step - 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; let vTable = tablename($(i));&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;IF WildMatch('$(vTable)','Report*') then&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp; Load *,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp; alt(Lookup('Compliance Score','ExtractedValue', HostNameFinal, '$(vTable)'),&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp; Lookup('Compliance Score','ExtractedValue', ClusterName, '$(vTable)')) as Final,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;&amp;nbsp; Right('$(vTable)',6) as Month INLINE [&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; HostNameFinal, ClusterName&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; BIEW01, BIEW01C&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ARKW01V, ARKW01C&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CRMAW01V, CRMAW01C&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;drop table '$(vTable)';&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;endif&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;next i;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;regards&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;Pradosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Dec 2017 08:59:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Using-Applymap-to-multiple-excel-files/m-p/1449184#M35369</guid>
      <dc:creator>pradosh_thakur</dc:creator>
      <dc:date>2017-12-13T08:59:57Z</dc:date>
    </item>
    <item>
      <title>Re: Using Applymap to multiple excel files</title>
      <link>https://community.qlik.com/t5/App-Development/Using-Applymap-to-multiple-excel-files/m-p/1449185#M35370</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, there will be a synthetic key if the table name is removed.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="SynKey.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/186763_SynKey.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Dec 2017 09:11:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Using-Applymap-to-multiple-excel-files/m-p/1449185#M35370</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-12-13T09:11:52Z</dc:date>
    </item>
    <item>
      <title>Re: Using Applymap to multiple excel files</title>
      <link>https://community.qlik.com/t5/App-Development/Using-Applymap-to-multiple-excel-files/m-p/1449186#M35371</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You don't really need those table other than mapping right . Synthetic keys are not always harmful. if you don't want synthetic keys than&amp;nbsp; try using &lt;STRONG&gt;drop table dummy; &lt;/STRONG&gt;at the last. if possible show me your data model.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;regards&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;Pradosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Dec 2017 09:19:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Using-Applymap-to-multiple-excel-files/m-p/1449186#M35371</guid>
      <dc:creator>pradosh_thakur</dc:creator>
      <dc:date>2017-12-13T09:19:54Z</dc:date>
    </item>
    <item>
      <title>Re: Using Applymap to multiple excel files</title>
      <link>https://community.qlik.com/t5/App-Development/Using-Applymap-to-multiple-excel-files/m-p/1449187#M35372</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, the synthetic key still appears even after dropping the dummy table or commenting the entire table out. Here's a picture of my data model&lt;IMG alt="QlikDataModel.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/186774_QlikDataModel.PNG" style="height: 326px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Dec 2017 09:33:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Using-Applymap-to-multiple-excel-files/m-p/1449187#M35372</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-12-13T09:33:31Z</dc:date>
    </item>
    <item>
      <title>Re: Using Applymap to multiple excel files</title>
      <link>https://community.qlik.com/t5/App-Development/Using-Applymap-to-multiple-excel-files/m-p/1449188#M35373</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thats why i asked you to tweak your code.. please notice that you are using table name which is overall nor report*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;dummy:&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;load * inline[&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit; color: #3d3d3d;"&gt;ExtractedValue, &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;Compliance Score , Month&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;dummy, dummy, dummy&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;];&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;FOR Each File in filelist ('lib://Qlik Loop/Report 20*.xlsx')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;NoConcatenate&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;LOAD&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ExtractedValue,&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Compliance Score (%)" as "Compliance Score",&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt; subfield(Right((filename()',10),'.') as Month&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;FROM '$(File)' (ooxml, embedded labels, table is [Overall]);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;NEXT;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;for i = NoOfTables() - 1 to 0 step - 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; let vTable = tablename($(i));&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;IF WildMatch('$(vTable)','Overall*') then&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp; Load *,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp; alt(Lookup('Compliance Score','ExtractedValue', HostNameFinal, '$(vTable)'),&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp; Lookup('Compliance Score','ExtractedValue', ClusterName, '$(vTable)')) as Final,&lt;/P&gt;&lt;P style="font-family: inherit; font-style: inherit; font-weight: inherit; font-size: 13px; color: #3d3d3d;"&gt;alt(Lookup('&lt;STRONG style="color: #3d3d3d; font-size: 13px;"&gt;Month&lt;/STRONG&gt;','ExtractedValue', HostNameFinal, '$(vTable)'),&lt;/P&gt;&lt;P style="font-family: inherit; font-style: inherit; font-weight: inherit; font-size: 13px; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp; Lookup('&lt;STRONG style="color: #3d3d3d; font-size: 13px;"&gt;Month&lt;/STRONG&gt;','ExtractedValue', ClusterName, '$(vTable)')) as &lt;STRONG style="color: #3d3d3d; font-size: 13px;"&gt;Month&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt; INLINE [&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; HostNameFinal, ClusterName&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; BIEW01, BIEW01C&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ARKW01V, ARKW01C&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CRMAW01V, CRMAW01C&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;drop table '$(vTable)';&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;endif&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;next i;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;regards&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;Pradosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Dec 2017 09:57:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Using-Applymap-to-multiple-excel-files/m-p/1449188#M35373</guid>
      <dc:creator>pradosh_thakur</dc:creator>
      <dc:date>2017-12-13T09:57:54Z</dc:date>
    </item>
  </channel>
</rss>

