<?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: Pick Match to replace IF with multiple parameters in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Pick-Match-to-replace-IF-with-multiple-parameters/m-p/21144#M782362</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I doubt you would see a detectable difference in performance, and the Pick(Match()) may even perform worse than the nested if as it is doing a more complex calculation.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 Mar 2018 09:44:43 GMT</pubDate>
    <dc:creator>jonathandienst</dc:creator>
    <dc:date>2018-03-28T09:44:43Z</dc:date>
    <item>
      <title>Pick Match to replace IF with multiple parameters</title>
      <link>https://community.qlik.com/t5/QlikView/Pick-Match-to-replace-IF-with-multiple-parameters/m-p/21136#M782354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have this condition, how to write Pick(Match ())function to replace it ? Not sure how to use multiple parameters here. Below is the expression -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If([Cancel flag]='N' and [Cancel status]='Y', Red(),&lt;/P&gt;&lt;P&gt;If([Cancel flag]='Y' and [Cancel status]='N', Green()&lt;/P&gt;&lt;P&gt;))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pick-Match-to-replace-IF-with-multiple-parameters/m-p/21136#M782354</guid>
      <dc:creator>neha_sharma1275</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Pick Match to replace IF with multiple parameters</title>
      <link>https://community.qlik.com/t5/QlikView/Pick-Match-to-replace-IF-with-multiple-parameters/m-p/21137#M782355</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Apply the below example to your requirement.&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Example:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Pick(WildMatch(Month, 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'),&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; '01', '02', '03',&amp;nbsp; '04',&amp;nbsp; '05',&amp;nbsp; '06',&amp;nbsp; '07',&amp;nbsp; '08',&amp;nbsp; '09',&amp;nbsp; '10',&amp;nbsp; '11',&amp;nbsp; '12')&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;It will provide number value for the Month, based on the string value.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2018 03:28:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pick-Match-to-replace-IF-with-multiple-parameters/m-p/21137#M782355</guid>
      <dc:creator>qlikviewwizard</dc:creator>
      <dc:date>2018-03-28T03:28:32Z</dc:date>
    </item>
    <item>
      <title>Re: Pick Match to replace IF with multiple parameters</title>
      <link>https://community.qlik.com/t5/QlikView/Pick-Match-to-replace-IF-with-multiple-parameters/m-p/21138#M782356</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;pick(match(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;[Cancel flag]&lt;/SPAN&gt;, 'N', &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;[Cancel status]&lt;/SPAN&gt;, 'Y'), Red(), &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; match(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;[Cancel flag]&lt;/SPAN&gt;, 'Y', &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;[Cancel status]&lt;/SPAN&gt;, 'N'), Green()&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; )&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2018 03:35:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pick-Match-to-replace-IF-with-multiple-parameters/m-p/21138#M782356</guid>
      <dc:creator>shilpan</dc:creator>
      <dc:date>2018-03-28T03:35:07Z</dc:date>
    </item>
    <item>
      <title>Re: Pick Match to replace IF with multiple parameters</title>
      <link>https://community.qlik.com/t5/QlikView/Pick-Match-to-replace-IF-with-multiple-parameters/m-p/21139#M782357</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shilpan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This seems to be not working. Please find attached image, the first column [Account] is where I applied the expression you provided and all other columns have my previous IF statement for colour. You can see all rows are coloured Red when used your expression which is not correct.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2018 04:04:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pick-Match-to-replace-IF-with-multiple-parameters/m-p/21139#M782357</guid>
      <dc:creator>neha_sharma1275</dc:creator>
      <dc:date>2018-03-28T04:04:39Z</dc:date>
    </item>
    <item>
      <title>Re: Pick Match to replace IF with multiple parameters</title>
      <link>https://community.qlik.com/t5/QlikView/Pick-Match-to-replace-IF-with-multiple-parameters/m-p/21140#M782358</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it is fr multiple conditions in match function, can you please provide the exact expression for the condition I mentioned?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2018 04:50:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pick-Match-to-replace-IF-with-multiple-parameters/m-p/21140#M782358</guid>
      <dc:creator>neha_sharma1275</dc:creator>
      <dc:date>2018-03-28T04:50:44Z</dc:date>
    </item>
    <item>
      <title>Re: Pick Match to replace IF with multiple parameters</title>
      <link>https://community.qlik.com/t5/QlikView/Pick-Match-to-replace-IF-with-multiple-parameters/m-p/21141#M782359</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Neha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pick(Match([Cancel flag] &amp;amp; [Cancel status], 'NY','YN'),Red(),Green()) &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2018 04:57:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pick-Match-to-replace-IF-with-multiple-parameters/m-p/21141#M782359</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2018-03-28T04:57:19Z</dc:date>
    </item>
    <item>
      <title>Re: Pick Match to replace IF with multiple parameters</title>
      <link>https://community.qlik.com/t5/QlikView/Pick-Match-to-replace-IF-with-multiple-parameters/m-p/21142#M782360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there any particular reason for doing so? It is possible, but the expression will be no simpler and will be less intuitive to read.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2018 04:59:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pick-Match-to-replace-IF-with-multiple-parameters/m-p/21142#M782360</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2018-03-28T04:59:35Z</dc:date>
    </item>
    <item>
      <title>Re: Pick Match to replace IF with multiple parameters</title>
      <link>https://community.qlik.com/t5/QlikView/Pick-Match-to-replace-IF-with-multiple-parameters/m-p/21143#M782361</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to improve the performance of the application and as I am just looking at the optimization in front end, I thought this is one the replacements which would work and improve the performance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2018 06:02:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pick-Match-to-replace-IF-with-multiple-parameters/m-p/21143#M782361</guid>
      <dc:creator>neha_sharma1275</dc:creator>
      <dc:date>2018-03-28T06:02:32Z</dc:date>
    </item>
    <item>
      <title>Re: Pick Match to replace IF with multiple parameters</title>
      <link>https://community.qlik.com/t5/QlikView/Pick-Match-to-replace-IF-with-multiple-parameters/m-p/21144#M782362</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I doubt you would see a detectable difference in performance, and the Pick(Match()) may even perform worse than the nested if as it is doing a more complex calculation.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2018 09:44:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pick-Match-to-replace-IF-with-multiple-parameters/m-p/21144#M782362</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2018-03-28T09:44:43Z</dc:date>
    </item>
  </channel>
</rss>

