<?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: Multiple filters used from different tables using apply map in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Multiple-filters-used-from-different-tables-using-apply-map/m-p/1693940#M593471</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have following conditions to implement on the script level. They are as follows&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Untitled.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/31915i2B1AF94590ACF778/image-size/large?v=v2&amp;amp;px=999" role="button" title="Untitled.png" alt="Untitled.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;like for eg - I have condition as if part no=1 and Service No. is any value which is maintained in some other excel then I simply wrote a script as&amp;nbsp;&lt;/P&gt;&lt;P&gt;If(part_no= 1,ApplyMap('Functional_Service_ID',[Service No.],'')) As [Functional Test], so I was able to implement like this similarly, Now I have multiple conditions like 1. amount &amp;gt;2000 and claim type=9-10&amp;nbsp; 2. service ID =4840 and Mileage &amp;lt;500 and so on then how to implement same in the script when we have multiple filters...&lt;/P&gt;&lt;P&gt;Please help....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 16 Apr 2020 07:57:42 GMT</pubDate>
    <dc:creator>sakshikaul</dc:creator>
    <dc:date>2020-04-16T07:57:42Z</dc:date>
    <item>
      <title>Multiple filters used from different tables using apply map</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-filters-used-from-different-tables-using-apply-map/m-p/1693886#M593468</link>
      <description>&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;I have an excel which is maintained by user manually. It is having&amp;nbsp; columns for eg dealer code, manufacturer_ name.&lt;/P&gt;&lt;P&gt;Now i want this manufacturer should map against the dealer code so this could be done with the help of using apply map function.&lt;/P&gt;&lt;P&gt;like:- table1:&lt;/P&gt;&lt;P&gt;mapping load Dealer code&lt;/P&gt;&lt;P&gt;manufacturer_name&amp;nbsp;&lt;/P&gt;&lt;P&gt;so i simply&amp;nbsp; will use apply map('table1',Dealer code,'NA') to get the above required condition&amp;nbsp;&lt;/P&gt;&lt;P&gt;but what if my mapping load will have more than 2 columns for eg :- I have dealer code, manufacturer_name,service_no etc&amp;nbsp;&lt;/P&gt;&lt;P&gt;How to use apply function in this case?&lt;/P&gt;&lt;P&gt;what is the alternative to implement the same ?&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/46628"&gt;@sunny_talwar&lt;/a&gt;&amp;nbsp; and&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/5533"&gt;@Anil_Babu_Samineni&lt;/a&gt;&amp;nbsp; &amp;nbsp;Please help its urgently required&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Apr 2020 03:37:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-filters-used-from-different-tables-using-apply-map/m-p/1693886#M593468</guid>
      <dc:creator>sakshikaul</dc:creator>
      <dc:date>2020-04-16T03:37:31Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple filters used from different tables using apply map</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-filters-used-from-different-tables-using-apply-map/m-p/1693894#M593470</link>
      <description>&lt;P&gt;The map tables are limited to having only two columns. You can't use three columns in a map table.&lt;/P&gt;&lt;P&gt;To solve your need you can either create two different map tables. Or you can use a&amp;nbsp; join to combine the data of your tables. Just make sure that you three columns table does not have supplicates dealer codes, else you could will be duplicating the transactions in your original main table.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Apr 2020 04:44:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-filters-used-from-different-tables-using-apply-map/m-p/1693894#M593470</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2020-04-16T04:44:30Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple filters used from different tables using apply map</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-filters-used-from-different-tables-using-apply-map/m-p/1693940#M593471</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have following conditions to implement on the script level. They are as follows&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Untitled.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/31915i2B1AF94590ACF778/image-size/large?v=v2&amp;amp;px=999" role="button" title="Untitled.png" alt="Untitled.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;like for eg - I have condition as if part no=1 and Service No. is any value which is maintained in some other excel then I simply wrote a script as&amp;nbsp;&lt;/P&gt;&lt;P&gt;If(part_no= 1,ApplyMap('Functional_Service_ID',[Service No.],'')) As [Functional Test], so I was able to implement like this similarly, Now I have multiple conditions like 1. amount &amp;gt;2000 and claim type=9-10&amp;nbsp; 2. service ID =4840 and Mileage &amp;lt;500 and so on then how to implement same in the script when we have multiple filters...&lt;/P&gt;&lt;P&gt;Please help....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Apr 2020 07:57:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-filters-used-from-different-tables-using-apply-map/m-p/1693940#M593471</guid>
      <dc:creator>sakshikaul</dc:creator>
      <dc:date>2020-04-16T07:57:42Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple filters used from different tables using apply map</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-filters-used-from-different-tables-using-apply-map/m-p/1693996#M593473</link>
      <description>&lt;P&gt;You can have multiple conditions in an if statement. Try something like this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;IF(((amount&amp;gt;2000) AND match(type,9,10)) OR ((ServiceID=4840) and (Mileage&amp;lt;500)),&lt;BR /&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;ApplyMap('Functional_Service_ID',[Service No.],''),&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;null()&lt;BR /&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;&amp;nbsp; ) as FTest&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Apr 2020 09:48:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-filters-used-from-different-tables-using-apply-map/m-p/1693996#M593473</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2020-04-16T09:48:21Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple filters used from different tables using apply map</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-filters-used-from-different-tables-using-apply-map/m-p/1694032#M593474</link>
      <description>&lt;P&gt;Thanks for your immediate reply.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have one more concern like the conditions provided in excel keeps on changing every week so I want when certain condition is not fulfilled it should work as a blank filter and rest of the conditions should be checked.&lt;/P&gt;&lt;P&gt;For Eg:-I have to&amp;nbsp; apply condition&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;IF(((amount&amp;gt;2000) AND match(type,9,10)) OR ((ServiceID=4840) and (Mileage&amp;lt;500)),&lt;BR /&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;ApplyMap('Functional_Service_ID',[Service No.],''),&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;null()&lt;BR /&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;&amp;nbsp; ) as FTest&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;and next day again user changes condition as I have to apply condition claim type =6-10 instead of 9-10 and amount&amp;lt;1000 instead of &amp;gt; 2000 and rest other conditions like service_ no will be blank as it is not required to be checked under new condition then in that case how to handle?&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Apr 2020 11:30:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-filters-used-from-different-tables-using-apply-map/m-p/1694032#M593474</guid>
      <dc:creator>sakshikaul</dc:creator>
      <dc:date>2020-04-16T11:30:29Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple filters used from different tables using apply map</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-filters-used-from-different-tables-using-apply-map/m-p/1694305#M593476</link>
      <description>&lt;LI-CODE lang="markup"&gt;Mapper:
Mapping
LOAD DCode&amp;amp;'@'&amp;amp;Manufacture&amp;amp;'@'&amp;amp;Service# As Key, Rating
;
LOAD * INLINE [
    DCode, Manufacture, Service#, Rating
    D1, Toyota, S1, 2
    D2, Honda, S3, 1
    D3, GM, S4, 3
];

tab1:
LOAD *, ApplyMap('Mapper',DealerCode&amp;amp;'@'&amp;amp;ManufactureName&amp;amp;'@'&amp;amp;ServiceNo,'N/A') As DealerRating
;
LOAD * INLINE [
    DealerCode, ManufactureName, ServiceNo
    D1, Toyota, S1, 2
    D2, Honda, S3, 1
    D4, GM, S4, 3
];&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 17 Apr 2020 03:18:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-filters-used-from-different-tables-using-apply-map/m-p/1694305#M593476</guid>
      <dc:creator>Saravanan_Desingh</dc:creator>
      <dc:date>2020-04-17T03:18:34Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple filters used from different tables using apply map</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-filters-used-from-different-tables-using-apply-map/m-p/1694311#M593477</link>
      <description>&lt;P&gt;In simple words I want to implement the below situation&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ex : If Row 4 has Service ID column &amp;nbsp;as 2706 and Damage Type Column as 0010, then it will work like 2706+0010. So ideally each row will work like unique condition.&lt;/P&gt;&lt;P&gt;In simple terms, Rows are conditions, columns are combinations.&lt;/P&gt;&lt;P&gt;Now how to implement this using apply map function ?&lt;/P&gt;</description>
      <pubDate>Fri, 17 Apr 2020 05:23:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-filters-used-from-different-tables-using-apply-map/m-p/1694311#M593477</guid>
      <dc:creator>sakshikaul</dc:creator>
      <dc:date>2020-04-17T05:23:17Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple filters used from different tables using apply map</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-filters-used-from-different-tables-using-apply-map/m-p/1694373#M593478</link>
      <description>&lt;DIV&gt;I want to implement nested apply maps in a single line.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;I tried below coding but its giving me a syntax error&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;mapping tables.........&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Central_Report_Dealer_Code:&lt;BR /&gt;&lt;/SPAN&gt;&lt;DIV&gt;mapping LOAD&lt;/DIV&gt;&lt;DIV&gt;[Dealer Code],&lt;/DIV&gt;&lt;DIV&gt;'Dealer_Code'&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;FROM&lt;/DIV&gt;&lt;DIV&gt;[D:\Qlik \ Claim\WPRC_Raw_Data_AU\Central report conditions - revised.xlsx]&lt;/DIV&gt;&lt;SPAN&gt;(ooxml, embedded labels, table is Sheet1);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Central_Report_Claim_Type:&lt;BR /&gt;&lt;/SPAN&gt;&lt;DIV&gt;mapping&lt;/DIV&gt;&lt;DIV&gt;LOAD&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;[Claim type],&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;'Claim_Type'&lt;/DIV&gt;&lt;DIV&gt;FROM&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;[D:\Qlik \ Claim\WPRC_Raw_Data_AU\Central report conditions - revised.xlsx]&lt;/DIV&gt;&lt;SPAN&gt;(ooxml, embedded labels, table is Sheet1);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;SPAN&gt;&lt;STRONG&gt;ApplyMap('Central_Report_Dealer_Code',[Dealer Code],'') and &amp;nbsp;ApplyMap('Central_Report_Claim_Type',[Claim type]','NA') &amp;nbsp;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;STRONG&gt;Following condition marked in bold is giving me syntax error...Please help.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;STRONG&gt;I have to apply all the conditions using apply map given in excel sheet&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Untitled.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/32016iF0B7339B91752C7E/image-size/large?v=v2&amp;amp;px=999" role="button" title="Untitled.png" alt="Untitled.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 17 Apr 2020 09:48:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-filters-used-from-different-tables-using-apply-map/m-p/1694373#M593478</guid>
      <dc:creator>sakshikaul</dc:creator>
      <dc:date>2020-04-17T09:48:19Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple filters used from different tables using apply map</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-filters-used-from-different-tables-using-apply-map/m-p/1694378#M593480</link>
      <description>&lt;P&gt;I'm sorry, but I don't see any blue.&lt;/P&gt;&lt;P&gt;Your applymaps looks OK. If you want to concat the output into one field you should not use "AND" you need to use "&amp;amp;"&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;ApplyMap('Central_Report_Dealer_Code',[Dealer Code],'') &amp;amp; ApplyMap('Central_Report_Claim_Type',[Claim type]','NA') &lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Apr 2020 09:49:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-filters-used-from-different-tables-using-apply-map/m-p/1694378#M593480</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2020-04-17T09:49:02Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple filters used from different tables using apply map</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-filters-used-from-different-tables-using-apply-map/m-p/1694385#M593481</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sakshikaul_0-1587117443807.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/32018i56DF2DBE9FAFC118/image-size/medium?v=v2&amp;amp;px=400" role="button" title="sakshikaul_0-1587117443807.png" alt="sakshikaul_0-1587117443807.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I am trying the code you mentioned above but I am getting some syntax error in this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Apr 2020 09:58:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-filters-used-from-different-tables-using-apply-map/m-p/1694385#M593481</guid>
      <dc:creator>sakshikaul</dc:creator>
      <dc:date>2020-04-17T09:58:21Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple filters used from different tables using apply map</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-filters-used-from-different-tables-using-apply-map/m-p/1694681#M593482</link>
      <description>&lt;P&gt;You need to remove the single quote (') after [Claim type]&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 19 Apr 2020 07:09:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-filters-used-from-different-tables-using-apply-map/m-p/1694681#M593482</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2020-04-19T07:09:14Z</dc:date>
    </item>
  </channel>
</rss>

