<?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: how to evaluate an expression? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/how-to-evaluate-an-expression/m-p/536841#M200619</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a table that shows nulls for some records when I leave a particular field unselected, then shows values when I select something in that field.&amp;nbsp; In my case the field is called Source, and even though it is not in my straight chart, the straight chart is seeing a conflict in the record source and discards the record rather than show the most current version as it should.&amp;nbsp; I don't know why mine behaves that way, but it sounds like you have the same kind of something causing a conflict that resolves only when you select something in that field.&amp;nbsp; Not sure really how to fix it since I needed the particular field to select by if not to aggregate my table by...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 29 Jul 2013 21:11:40 GMT</pubDate>
    <dc:creator>stevelord</dc:creator>
    <dc:date>2013-07-29T21:11:40Z</dc:date>
    <item>
      <title>how to evaluate an expression?</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-evaluate-an-expression/m-p/536840#M200618</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I have some formulas that I need to bring me results. So I´m trying to find the correct comands with no sucess.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I´ve created an aplications only with these lines on script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; F1, F2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A, (5*8)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B, (2*1)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; C, (1+1)&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then I´ve create a table showing F1, F2 and these expression:&lt;/P&gt;&lt;P&gt;=$(=F2)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is that my table only shows the result in the expression when I select something. It shows me NULL values it I intend to show all the records.&lt;/P&gt;&lt;P&gt;Any idea why?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jul 2013 20:42:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-evaluate-an-expression/m-p/536840#M200618</guid>
      <dc:creator>rcandeo</dc:creator>
      <dc:date>2013-07-29T20:42:17Z</dc:date>
    </item>
    <item>
      <title>Re: how to evaluate an expression?</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-evaluate-an-expression/m-p/536841#M200619</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a table that shows nulls for some records when I leave a particular field unselected, then shows values when I select something in that field.&amp;nbsp; In my case the field is called Source, and even though it is not in my straight chart, the straight chart is seeing a conflict in the record source and discards the record rather than show the most current version as it should.&amp;nbsp; I don't know why mine behaves that way, but it sounds like you have the same kind of something causing a conflict that resolves only when you select something in that field.&amp;nbsp; Not sure really how to fix it since I needed the particular field to select by if not to aggregate my table by...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jul 2013 21:11:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-evaluate-an-expression/m-p/536841#M200619</guid>
      <dc:creator>stevelord</dc:creator>
      <dc:date>2013-07-29T21:11:40Z</dc:date>
    </item>
    <item>
      <title>Re: how to evaluate an expression?</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-evaluate-an-expression/m-p/536842#M200620</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think the problem is that the &lt;SPAN style="color: #737373; font-family: Arial; font-size: 12.800000190734863px; background-color: #ffffff;"&gt;=$(=F2)&lt;/SPAN&gt; calculates once per chart, not on a row basis. So when there is only one value available for F2, it works, otherwise not. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is an evaluate() function available in script that will allow you to evaluate the expressions. Or do you have to do the evaluation in the chart? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jul 2013 22:01:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-evaluate-an-expression/m-p/536842#M200620</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2013-07-29T22:01:56Z</dc:date>
    </item>
    <item>
      <title>Re: how to evaluate an expression?</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-evaluate-an-expression/m-p/536843#M200621</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;It will work with this expression:&lt;/P&gt;&lt;P&gt;=Pick(Match(F2,$(=Chr(39)&amp;amp; Concat(F2, Chr(39) &amp;amp; ',' &amp;amp; Chr(39),F1) &amp;amp; Chr(39))),$(=Concat(F2,',',F1)))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sokkorn&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Jul 2013 01:21:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-evaluate-an-expression/m-p/536843#M200621</guid>
      <dc:creator>Sokkorn</dc:creator>
      <dc:date>2013-07-30T01:21:13Z</dc:date>
    </item>
    <item>
      <title>Re: how to evaluate an expression?</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-evaluate-an-expression/m-p/536844#M200622</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I couldn´t use this expression, but I became curious how to use it. Can you show me how please?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Jul 2013 17:15:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-evaluate-an-expression/m-p/536844#M200622</guid>
      <dc:creator>rcandeo</dc:creator>
      <dc:date>2013-07-30T17:15:27Z</dc:date>
    </item>
  </channel>
</rss>

