<?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: expression error can not be avoided use if condition in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/expression-error-can-not-be-avoided-use-if-condition/m-p/988401#M527813</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, NagaianK,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, if vCur = '$' or '&lt;SPAN style="color: #545454; font-family: arial, sans-serif; font-size: small;"&gt;€&lt;/SPAN&gt;', any specific currency symbol, then expression as below works.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Money(100,'$(vCur)#,###.000')&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;The problems is that when vCur= '-', then the expression dose not work, and will give&amp;nbsp; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;"Error: Error in expression: ')' expected" error. This is correct. But then I use the if condition to process the error situation:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3333px;"&gt;=if(&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;vCur&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3333px;"&gt; = '-', 'N/A', money($(_vCost), $(vCur) &amp;amp; ' #,##0.000'))&lt;/SPAN&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Then I still got &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;"Error: Error in expression: ')' expected". &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;But when I try:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3333px;"&gt;=if(&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;vCur&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3333px;"&gt; = '-', 'N/A', money($(_vCost), ' #,##0.000')),&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; line-height: 1.5em;"&gt;then it works.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; line-height: 1.5em;"&gt;So I guess QV still first check the correctness of&amp;nbsp; expression:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; color: #3d3d3d; font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;money($(_vCost), $(vCur) &amp;amp; ' #,##0.000')&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 19 Oct 2015 09:23:30 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2015-10-19T09:23:30Z</dc:date>
    <item>
      <title>expression error can not be avoided use if condition</title>
      <link>https://community.qlik.com/t5/QlikView/expression-error-can-not-be-avoided-use-if-condition/m-p/988397#M527809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, all, I just updated to QV 11.20 SR12, but now I encountered a problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For expression as below use to format the money:&lt;/P&gt;&lt;P&gt;= money($(_vCost), $($(vCurrency)) &amp;amp; ' #,##0.000')&lt;/P&gt;&lt;P&gt;Which is used in our old dash, and before, even if the expression is not correct when &lt;SPAN style="font-size: 13.3333px;"&gt;vCurrency = '-'&lt;/SPAN&gt;, there is no error info.&lt;/P&gt;&lt;P&gt;I know it is good that in the new version,&amp;nbsp; it will detecte such error and display:&lt;/P&gt;&lt;P&gt;"Error: Error in expression: ')' expected"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;So I modify my script as following to use if condition to process when vCurrency = '-':&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;=if(&lt;SPAN style="font-size: 13.3333px;"&gt;vCurrency&lt;/SPAN&gt; = '-', 'N/A', money($(_vCost), $($(vCurrency)) &amp;amp; ' #,##0.000')) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;But surprisingly , seems because part of the script "&lt;SPAN style="font-size: 13.3333px;"&gt;money($(_vCost), $($(vCurrency)) &amp;amp; ' #,##0.000')&lt;/SPAN&gt;" is wrong, then I still get the error info.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;I tested to use like :&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;=if(&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;vCurrency&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; = '-', 'N/A',&amp;nbsp; $(_vCost)),&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Then it is correct, which means the if condition is correct.&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;Did I miss anything? Dose anyone have any idea to avoid this? &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Thanks very much&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Oct 2015 14:48:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/expression-error-can-not-be-avoided-use-if-condition/m-p/988397#M527809</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-10-15T14:48:28Z</dc:date>
    </item>
    <item>
      <title>Re: expression error can not be avoided use if condition</title>
      <link>https://community.qlik.com/t5/QlikView/expression-error-can-not-be-avoided-use-if-condition/m-p/988398#M527810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;money($(_vCost), Chr(39) &amp;amp;$(vCurrency)&amp;amp; ' #,##0.000' &amp;amp; Chr(39)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Oct 2015 15:24:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/expression-error-can-not-be-avoided-use-if-condition/m-p/988398#M527810</guid>
      <dc:creator>nagaiank</dc:creator>
      <dc:date>2015-10-15T15:24:43Z</dc:date>
    </item>
    <item>
      <title>Re: expression error can not be avoided use if condition</title>
      <link>https://community.qlik.com/t5/QlikView/expression-error-can-not-be-avoided-use-if-condition/m-p/988399#M527811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;NagaianK,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tried, it dose not work. Thanks.&lt;/P&gt;&lt;P&gt;ZHihong&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Oct 2015 15:33:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/expression-error-can-not-be-avoided-use-if-condition/m-p/988399#M527811</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-10-15T15:33:16Z</dc:date>
    </item>
    <item>
      <title>Re: expression error can not be avoided use if condition</title>
      <link>https://community.qlik.com/t5/QlikView/expression-error-can-not-be-avoided-use-if-condition/m-p/988400#M527812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If vCur = '$',&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Money(100,'$(vCur)#,###.000')&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;Num(100,'$(vCur)#,###.000')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Displays $100.000 in textbox.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Oct 2015 15:46:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/expression-error-can-not-be-avoided-use-if-condition/m-p/988400#M527812</guid>
      <dc:creator>nagaiank</dc:creator>
      <dc:date>2015-10-15T15:46:40Z</dc:date>
    </item>
    <item>
      <title>Re: expression error can not be avoided use if condition</title>
      <link>https://community.qlik.com/t5/QlikView/expression-error-can-not-be-avoided-use-if-condition/m-p/988401#M527813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, NagaianK,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, if vCur = '$' or '&lt;SPAN style="color: #545454; font-family: arial, sans-serif; font-size: small;"&gt;€&lt;/SPAN&gt;', any specific currency symbol, then expression as below works.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Money(100,'$(vCur)#,###.000')&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;The problems is that when vCur= '-', then the expression dose not work, and will give&amp;nbsp; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;"Error: Error in expression: ')' expected" error. This is correct. But then I use the if condition to process the error situation:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3333px;"&gt;=if(&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;vCur&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3333px;"&gt; = '-', 'N/A', money($(_vCost), $(vCur) &amp;amp; ' #,##0.000'))&lt;/SPAN&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Then I still got &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;"Error: Error in expression: ')' expected". &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;But when I try:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3333px;"&gt;=if(&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;vCur&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3333px;"&gt; = '-', 'N/A', money($(_vCost), ' #,##0.000')),&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; line-height: 1.5em;"&gt;then it works.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; line-height: 1.5em;"&gt;So I guess QV still first check the correctness of&amp;nbsp; expression:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; color: #3d3d3d; font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;money($(_vCost), $(vCur) &amp;amp; ' #,##0.000')&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Oct 2015 09:23:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/expression-error-can-not-be-avoided-use-if-condition/m-p/988401#M527813</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-10-19T09:23:30Z</dc:date>
    </item>
    <item>
      <title>Re: expression error can not be avoided use if condition</title>
      <link>https://community.qlik.com/t5/QlikView/expression-error-can-not-be-avoided-use-if-condition/m-p/988402#M527814</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You are right, qv parses the string to find the correctness of the expression syntax before it starts evaluating the expression. And that makes sense. Alternatively, you could try with ASCII character evaluation for the problematic character, like:&lt;/P&gt;&lt;P&gt;chr(XXX) &amp;amp; ... &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Oct 2015 09:27:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/expression-error-can-not-be-avoided-use-if-condition/m-p/988402#M527814</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2015-10-19T09:27:22Z</dc:date>
    </item>
    <item>
      <title>Re: expression error can not be avoided use if condition</title>
      <link>https://community.qlik.com/t5/QlikView/expression-error-can-not-be-avoided-use-if-condition/m-p/988403#M527815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The syntax checker has some issues in SR11+&lt;/P&gt;&lt;P&gt;&lt;A href="http://qlikviewcookbook.com/2015/05/sr11-error-handling-changes/" title="http://qlikviewcookbook.com/2015/05/sr11-error-handling-changes/"&gt;SR11 Error Handling Changes | Qlikview Cookbook&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Valid expressions may report "Error in Expression" even when the expression is correct. &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, 19 Oct 2015 09:34:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/expression-error-can-not-be-avoided-use-if-condition/m-p/988403#M527815</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2015-10-19T09:34:49Z</dc:date>
    </item>
    <item>
      <title>Re: expression error can not be avoided use if condition</title>
      <link>https://community.qlik.com/t5/QlikView/expression-error-can-not-be-avoided-use-if-condition/m-p/988404#M527816</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Rob,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Thanks for the link and the article.&amp;nbsp; I see, the problem in my case seems related to the 2nd&amp;nbsp; error handling in your article "&lt;SPAN style="color: #2b2b2b; font-family: Lato, sans-serif; font-size: 16px;"&gt;Charts that contain&lt;/SPAN&gt;&lt;EM style="font-family: Lato, sans-serif; font-size: 16px; color: #2b2b2b;"&gt; &lt;/EM&gt;&lt;SPAN style="color: #2b2b2b; font-family: Lato, sans-serif; font-size: 16px;"&gt;invalid expressions will now fail to render.&lt;/SPAN&gt;" Good news is that this "Error" will not display in our server side, just in my local development. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;But I think it is not a good idea even if condition can not avoid it. &lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Oct 2015 10:12:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/expression-error-can-not-be-avoided-use-if-condition/m-p/988404#M527816</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-10-19T10:12:33Z</dc:date>
    </item>
    <item>
      <title>Re: expression error can not be avoided use if condition</title>
      <link>https://community.qlik.com/t5/QlikView/expression-error-can-not-be-avoided-use-if-condition/m-p/988405#M527819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, tresesco,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your suggestion, I will try it. Actually I also tried to use char "-" or null( ) instead of &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3333px;"&gt;$(vCur), &lt;/SPAN&gt; and then it works. So I think it is because our old way to use $(vCur) cause some problem. I will test more to see why.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Zhihong &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Oct 2015 11:00:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/expression-error-can-not-be-avoided-use-if-condition/m-p/988405#M527819</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-10-19T11:00:04Z</dc:date>
    </item>
    <item>
      <title>Re: expression error can not be avoided use if condition</title>
      <link>https://community.qlik.com/t5/QlikView/expression-error-can-not-be-avoided-use-if-condition/m-p/988406#M527820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you tried using isnull statement in the if clause?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;=if(isnull(&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;vCur)&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;, 'N/A', money($(_vCost), &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;'$(vCur)#,###.000'&lt;/SPAN&gt;))&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Oct 2015 11:09:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/expression-error-can-not-be-avoided-use-if-condition/m-p/988406#M527820</guid>
      <dc:creator>miguelbraga</dc:creator>
      <dc:date>2015-10-19T11:09:11Z</dc:date>
    </item>
  </channel>
</rss>

