<?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 function is not working in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Pick-match-function-is-not-working/m-p/2160623#M94148</link>
    <description>&lt;P&gt;i don't see how can i split my formula, i don't really understand your solution.&lt;/P&gt;
&lt;P&gt;Thank you for adding more details please?&lt;/P&gt;</description>
    <pubDate>Thu, 11 Jan 2024 14:39:11 GMT</pubDate>
    <dc:creator>RanOuerg</dc:creator>
    <dc:date>2024-01-11T14:39:11Z</dc:date>
    <item>
      <title>Pick match function is not working</title>
      <link>https://community.qlik.com/t5/App-Development/Pick-match-function-is-not-working/m-p/2160106#M94086</link>
      <description>&lt;P&gt;Hello all,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Due to performance issues, I aimed to replace the nested &lt;/SPAN&gt;&lt;CODE&gt;if&lt;/CODE&gt;&lt;SPAN&gt; with &lt;/SPAN&gt;&lt;CODE&gt;Pick&lt;/CODE&gt;&lt;SPAN&gt; and &lt;/SPAN&gt;&lt;CODE&gt;Match&lt;/CODE&gt;&lt;SPAN&gt;, but encountered problems. I used the following formula in a column's background color: &lt;/SPAN&gt;&lt;CODE&gt;pick(match(($(variable) &amp;gt; 10000), true()), red(), green())&lt;/CODE&gt;&lt;SPAN&gt;. However, this approach didn't work as expected. When I tried using an &lt;/SPAN&gt;&lt;CODE&gt;if&lt;/CODE&gt;&lt;SPAN&gt; statement instead, I obtained the correct results. Any insights into what might be causing the issue?"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Thank you in advance.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jan 2024 14:31:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Pick-match-function-is-not-working/m-p/2160106#M94086</guid>
      <dc:creator>RanOuerg</dc:creator>
      <dc:date>2024-01-10T14:31:27Z</dc:date>
    </item>
    <item>
      <title>Re: Pick match function is not working</title>
      <link>https://community.qlik.com/t5/App-Development/Pick-match-function-is-not-working/m-p/2160118#M94087</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/146430"&gt;@RanOuerg&lt;/a&gt;&amp;nbsp;Not sure the use of True() here. perhaps this?&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;pick(match(($(variable)) &amp;gt; 10000)&lt;STRONG&gt;+1&lt;/STRONG&gt;,&amp;nbsp; green(), red())&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jan 2024 14:49:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Pick-match-function-is-not-working/m-p/2160118#M94087</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2024-01-10T14:49:42Z</dc:date>
    </item>
    <item>
      <title>Re: Pick match function is not working</title>
      <link>https://community.qlik.com/t5/App-Development/Pick-match-function-is-not-working/m-p/2160124#M94088</link>
      <description>&lt;P&gt;i remplaced true() with 1 but it still not working&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jan 2024 15:12:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Pick-match-function-is-not-working/m-p/2160124#M94088</guid>
      <dc:creator>RanOuerg</dc:creator>
      <dc:date>2024-01-10T15:12:03Z</dc:date>
    </item>
    <item>
      <title>Re: Pick match function is not working</title>
      <link>https://community.qlik.com/t5/App-Development/Pick-match-function-is-not-working/m-p/2160166#M94093</link>
      <description>&lt;P&gt;Pick(Match()) will generally perform no faster or slower than an if().&amp;nbsp; If the if() function works for you, I would go with that. If this is causing you performance issues, the issue is likely in the $(variable) expression.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;-Rob&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jan 2024 16:00:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Pick-match-function-is-not-working/m-p/2160166#M94093</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2024-01-10T16:00:54Z</dc:date>
    </item>
    <item>
      <title>Re: Pick match function is not working</title>
      <link>https://community.qlik.com/t5/App-Development/Pick-match-function-is-not-working/m-p/2160369#M94109</link>
      <description>&lt;P&gt;Understand, but why it not working ? what is the issue with my formula&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2024 08:29:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Pick-match-function-is-not-working/m-p/2160369#M94109</guid>
      <dc:creator>RanOuerg</dc:creator>
      <dc:date>2024-01-11T08:29:40Z</dc:date>
    </item>
    <item>
      <title>Re: Pick match function is not working</title>
      <link>https://community.qlik.com/t5/App-Development/Pick-match-function-is-not-working/m-p/2160398#M94113</link>
      <description>&lt;P&gt;Your match() could result in two values - 0 for a non-matching and 1 if the variable-comparing returned true(). The 0 couldn't be fetched from pick() because their index starts with 1. To comprehend it I suggest to split it into several parts, like:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;$(variable)&lt;BR /&gt;$(variable) &amp;gt; 10000&lt;BR /&gt;match(($(variable) &amp;gt; 10000), true())&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;beside each other.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2024 09:03:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Pick-match-function-is-not-working/m-p/2160398#M94113</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2024-01-11T09:03:16Z</dc:date>
    </item>
    <item>
      <title>Re: Pick match function is not working</title>
      <link>https://community.qlik.com/t5/App-Development/Pick-match-function-is-not-working/m-p/2160623#M94148</link>
      <description>&lt;P&gt;i don't see how can i split my formula, i don't really understand your solution.&lt;/P&gt;
&lt;P&gt;Thank you for adding more details please?&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2024 14:39:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Pick-match-function-is-not-working/m-p/2160623#M94148</guid>
      <dc:creator>RanOuerg</dc:creator>
      <dc:date>2024-01-11T14:39:11Z</dc:date>
    </item>
    <item>
      <title>Re: Pick match function is not working</title>
      <link>https://community.qlik.com/t5/App-Development/Pick-match-function-is-not-working/m-p/2160955#M94185</link>
      <description>&lt;P&gt;Just use each part as an own expression within a table-chart. Each nested expression is resolved starting from the most inner expression-part and then next wrapping one takes the result as parameter and performed the own calculation with it.&lt;/P&gt;
&lt;P&gt;The aim by separating all expression-parts is to comprehend the single results and their evolution within the expression-chain to detect logically issues which will occur if the results are unexpected in any way.&lt;/P&gt;</description>
      <pubDate>Fri, 12 Jan 2024 08:56:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Pick-match-function-is-not-working/m-p/2160955#M94185</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2024-01-12T08:56:29Z</dc:date>
    </item>
  </channel>
</rss>

