<?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: Alternate method for Pick Match in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Alternate-method-for-Pick-Match/m-p/1686508#M450411</link>
    <description>&lt;P&gt;Pickmatch is the most efficient way of doing this IMO (compared to if statements)&lt;/P&gt;&lt;P&gt;check&lt;/P&gt;&lt;P&gt;&lt;A href="http://dailyqv.blogspot.com/2013/01/using-pick-and-match-functions-for.html" target="_blank"&gt;http://dailyqv.blogspot.com/2013/01/using-pick-and-match-functions-for.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 20 Mar 2020 14:16:17 GMT</pubDate>
    <dc:creator>dplr-rn</dc:creator>
    <dc:date>2020-03-20T14:16:17Z</dc:date>
    <item>
      <title>Alternate method for Pick Match</title>
      <link>https://community.qlik.com/t5/QlikView/Alternate-method-for-Pick-Match/m-p/1686482#M450406</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;We are trying to optimize the expression, we are having 43 rows in a straight table each row has its own expression.&lt;/P&gt;&lt;P&gt;Please refer &lt;STRONG&gt;Table2(Straight table)&lt;/STRONG&gt; in the attached &lt;STRONG&gt;QVW&lt;/STRONG&gt;, &lt;STRONG&gt;Column1&lt;/STRONG&gt; is Inline Table field, &lt;STRONG&gt;Column2&lt;/STRONG&gt; is the Expression.(have taken only 2 rows in this example).&lt;/P&gt;&lt;P&gt;As of now we are using Pick(Match()).&lt;/P&gt;&lt;P&gt;Can anyone suggest any better option?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 20 Mar 2020 12:55:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Alternate-method-for-Pick-Match/m-p/1686482#M450406</guid>
      <dc:creator>krupasaim</dc:creator>
      <dc:date>2020-03-20T12:55:27Z</dc:date>
    </item>
    <item>
      <title>Re: Alternate method for Pick Match</title>
      <link>https://community.qlik.com/t5/QlikView/Alternate-method-for-Pick-Match/m-p/1686508#M450411</link>
      <description>&lt;P&gt;Pickmatch is the most efficient way of doing this IMO (compared to if statements)&lt;/P&gt;&lt;P&gt;check&lt;/P&gt;&lt;P&gt;&lt;A href="http://dailyqv.blogspot.com/2013/01/using-pick-and-match-functions-for.html" target="_blank"&gt;http://dailyqv.blogspot.com/2013/01/using-pick-and-match-functions-for.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Mar 2020 14:16:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Alternate-method-for-Pick-Match/m-p/1686508#M450411</guid>
      <dc:creator>dplr-rn</dc:creator>
      <dc:date>2020-03-20T14:16:17Z</dc:date>
    </item>
    <item>
      <title>Re: Alternate method for Pick Match</title>
      <link>https://community.qlik.com/t5/QlikView/Alternate-method-for-Pick-Match/m-p/1686558#M450418</link>
      <description>&lt;P&gt;You will encounter performance problems because both count expressions will be calculated in all cases.&amp;nbsp; The Pick(Match()) will only select one of the results.&amp;nbsp;&lt;/P&gt;&lt;P&gt;A better way to do this is move the Pick(Match()) into a variable (or double DSE) that returns the string value of the selected expression and then calculate it. See&amp;nbsp;&lt;A href="https://qlikviewcookbook.com/2014/12/how-not-to-choose-an-expression/" target="_blank"&gt;https://qlikviewcookbook.com/2014/12/how-not-to-choose-an-expression/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;</description>
      <pubDate>Fri, 20 Mar 2020 17:57:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Alternate-method-for-Pick-Match/m-p/1686558#M450418</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2020-03-20T17:57:17Z</dc:date>
    </item>
    <item>
      <title>Re: Alternate method for Pick Match</title>
      <link>https://community.qlik.com/t5/QlikView/Alternate-method-for-Pick-Match/m-p/1686659#M450427</link>
      <description>&lt;P&gt;Rob, I think because the $(=...) is evaluated ignoring dimensions in the table, it would not work in this case since the 'Field' is actually a dimension. It would be awesome if there was a way around that...&lt;/P&gt;&lt;P&gt;I think if the expressions are nicely cacheable, then calculating all cases and then picking one may be ok. They will all need to be calculated on the other rows anyways.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 21 Mar 2020 14:58:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Alternate-method-for-Pick-Match/m-p/1686659#M450427</guid>
      <dc:creator>MikeW</dc:creator>
      <dc:date>2020-03-21T14:58:06Z</dc:date>
    </item>
    <item>
      <title>Re: Alternate method for Pick Match</title>
      <link>https://community.qlik.com/t5/QlikView/Alternate-method-for-Pick-Match/m-p/1686672#M450428</link>
      <description>&lt;P&gt;Good point. If I can think if a syntax that would work, I'll post back.&amp;nbsp;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;</description>
      <pubDate>Sat, 21 Mar 2020 17:37:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Alternate-method-for-Pick-Match/m-p/1686672#M450428</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2020-03-21T17:37:10Z</dc:date>
    </item>
  </channel>
</rss>

