<?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 = in the expression in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/in-the-expression/m-p/184850#M501462</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Steve,&lt;/P&gt;&lt;P&gt;I was talking about different things. Now is crystal clear and your example very useful. I should add that I never create variables from the "Variable Overview" panel, since I usually want to assign some default values and I prefer to do that in the script.&lt;/P&gt;&lt;P&gt;Anyway, good point noting that and thanks for your example.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 15 Nov 2010 09:32:33 GMT</pubDate>
    <dc:creator>Miguel_Angel_Baeyens</dc:creator>
    <dc:date>2010-11-15T09:32:33Z</dc:date>
    <item>
      <title>= in the expression</title>
      <link>https://community.qlik.com/t5/QlikView/in-the-expression/m-p/184845#M501457</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;I have noticed the expression are prefixed with = symbol and some expressions are not prefixed with =. Is there will be any difference if we are using prefix = and not prefix =. Please suggest.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Nov 2010 13:24:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/in-the-expression/m-p/184845#M501457</guid>
      <dc:creator />
      <dc:date>2010-11-12T13:24:44Z</dc:date>
    </item>
    <item>
      <title>= in the expression</title>
      <link>https://community.qlik.com/t5/QlikView/in-the-expression/m-p/184846#M501458</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;When you set an expression in the expression dialog box, then there is no need to use the "=" sign, as this is what QlikView is expecting. Setting the "=" before the actual expression will make no difference. But in some cases you want something to be evaluated as an expression, then you prefix it with the "=" sign.&lt;/P&gt;&lt;P&gt;For instance, say you want to display an expression in a text object, or within the caption of a chart, then you will need the "=" sign:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;='Grand Total: ' &amp;amp; Sum(Amount)&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;You can check the expressions in the Settings menu, "Expression Overview" (NOTE: use this dialog with caution, since you can change expressions from here). You will see here a double == before those expressions that didn't need a preceding "=" but have one.&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Nov 2010 13:36:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/in-the-expression/m-p/184846#M501458</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2010-11-12T13:36:48Z</dc:date>
    </item>
    <item>
      <title>= in the expression</title>
      <link>https://community.qlik.com/t5/QlikView/in-the-expression/m-p/184847#M501459</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;Incidentally, there is a big difference between using the equals in front of expressions in variables. With an equals sign QlikView will re-evaluate the expression on any change (potentially a big resource drain) and using the variable will return the result of the expression. Without the equals sign the expression is not evaluated and the code is returned when the variable is used - this means it is evaluated where it is used.&lt;/P&gt;&lt;P&gt;The main visible difference of this is if an expression is used in a variable on a chart with a dimension. With an equals in front of the expression in the variable the same value will be returned for each dimension (as it is evaluated at application level), whereas if the variable does not have an euqals then it is evaluated separately for each dimension - thus giving a different answer.&lt;/P&gt;&lt;P&gt;Hope that makes sense.&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Steve&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 13 Nov 2010 17:17:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/in-the-expression/m-p/184847#M501459</guid>
      <dc:creator>stevedark</dc:creator>
      <dc:date>2010-11-13T17:17:09Z</dc:date>
    </item>
    <item>
      <title>= in the expression</title>
      <link>https://community.qlik.com/t5/QlikView/in-the-expression/m-p/184848#M501460</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Steve,&lt;/P&gt;&lt;P&gt;Would you be so kind as to post some example caode of what you are explaining above? Do you mean that&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;$(vAggr)&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;would return something different than &lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;=$(vAggr)&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;when vAggr has store &lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;Sum(Value)&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;and is used in a chart expression?&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 13 Nov 2010 17:29:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/in-the-expression/m-p/184848#M501460</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2010-11-13T17:29:46Z</dc:date>
    </item>
    <item>
      <title>= in the expression</title>
      <link>https://community.qlik.com/t5/QlikView/in-the-expression/m-p/184849#M501461</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Miguel,&lt;/P&gt;&lt;P&gt;What I was referring to is whether or not there is an equals sign in the variable rather than in the expression box.&lt;/P&gt;&lt;P&gt;I have put together an example document to show the difference in behaviour:&lt;/P&gt;&lt;P&gt;http://community.qlik.com/members/stevedark/files/Attached+Files/EqualsInVariables.qvw.aspx&lt;/P&gt;&lt;P&gt;Hope this clears up what I meant.&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Steve&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 Nov 2010 16:36:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/in-the-expression/m-p/184849#M501461</guid>
      <dc:creator>stevedark</dc:creator>
      <dc:date>2010-11-14T16:36:05Z</dc:date>
    </item>
    <item>
      <title>= in the expression</title>
      <link>https://community.qlik.com/t5/QlikView/in-the-expression/m-p/184850#M501462</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Steve,&lt;/P&gt;&lt;P&gt;I was talking about different things. Now is crystal clear and your example very useful. I should add that I never create variables from the "Variable Overview" panel, since I usually want to assign some default values and I prefer to do that in the script.&lt;/P&gt;&lt;P&gt;Anyway, good point noting that and thanks for your example.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Nov 2010 09:32:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/in-the-expression/m-p/184850#M501462</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2010-11-15T09:32:33Z</dc:date>
    </item>
    <item>
      <title>= in the expression</title>
      <link>https://community.qlik.com/t5/QlikView/in-the-expression/m-p/184851#M501463</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks &lt;STRONG&gt;Miguel A. Baeyens and Steve&lt;/STRONG&gt; for providing high clarity on usage of the = symbol&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Nov 2010 09:55:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/in-the-expression/m-p/184851#M501463</guid>
      <dc:creator />
      <dc:date>2010-11-15T09:55:07Z</dc:date>
    </item>
    <item>
      <title>Re: = in the expression</title>
      <link>https://community.qlik.com/t5/QlikView/in-the-expression/m-p/1522148#M501464</link>
      <description>&lt;P&gt;Hi&lt;BR /&gt;&lt;BR /&gt;Can you please explain with an Example QVW.&amp;nbsp; The link Given is not opening.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Dec 2018 13:12:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/in-the-expression/m-p/1522148#M501464</guid>
      <dc:creator>kalyanamharish</dc:creator>
      <dc:date>2018-12-18T13:12:55Z</dc:date>
    </item>
  </channel>
</rss>

