<?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 Writing with formulas in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Writing-with-formulas/m-p/577562#M214799</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was wondering if its possible that in a Text object you can write like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Amount is: &lt;EM&gt;varProd&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where &lt;EM&gt;varProd&lt;/EM&gt; is a variable that changes value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I currently know that to wrtie the value you can do =&lt;EM&gt;varProd&lt;/EM&gt; and it'll display the number, but is it possible to have a mix of text and variables or formulas, like in C++ or java.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 Feb 2014 19:32:54 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-02-12T19:32:54Z</dc:date>
    <item>
      <title>Writing with formulas</title>
      <link>https://community.qlik.com/t5/QlikView/Writing-with-formulas/m-p/577562#M214799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was wondering if its possible that in a Text object you can write like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Amount is: &lt;EM&gt;varProd&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where &lt;EM&gt;varProd&lt;/EM&gt; is a variable that changes value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I currently know that to wrtie the value you can do =&lt;EM&gt;varProd&lt;/EM&gt; and it'll display the number, but is it possible to have a mix of text and variables or formulas, like in C++ or java.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Feb 2014 19:32:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Writing-with-formulas/m-p/577562#M214799</guid>
      <dc:creator />
      <dc:date>2014-02-12T19:32:54Z</dc:date>
    </item>
    <item>
      <title>Re: Writing with formulas</title>
      <link>https://community.qlik.com/t5/QlikView/Writing-with-formulas/m-p/577563#M214800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sure:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;='The amount is ' &amp;amp; varProd&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Feb 2014 19:36:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Writing-with-formulas/m-p/577563#M214800</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2014-02-12T19:36:02Z</dc:date>
    </item>
    <item>
      <title>Re: Writing with formulas</title>
      <link>https://community.qlik.com/t5/QlikView/Writing-with-formulas/m-p/577564#M214801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You can concatenate static text with variable values. Just like you said in a text box try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;='The Amount is: ' &amp;amp; $(varProd)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just to mention, the $() is used when you want to evaluate the content of a variable, if you type just varProd, QlikView will return literally the text written in that variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Feb 2014 19:39:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Writing-with-formulas/m-p/577564#M214801</guid>
      <dc:creator>jaimeaguilar</dc:creator>
      <dc:date>2014-02-12T19:39:16Z</dc:date>
    </item>
    <item>
      <title>Re: Writing with formulas</title>
      <link>https://community.qlik.com/t5/QlikView/Writing-with-formulas/m-p/577565#M214802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes you can as Swuehl indicated you, and you can use the function num to have the correct decimals and extension number&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;num( var,'###.###,')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;good luck!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fernando&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Feb 2014 19:40:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Writing-with-formulas/m-p/577565#M214802</guid>
      <dc:creator>fkeuroglian</dc:creator>
      <dc:date>2014-02-12T19:40:39Z</dc:date>
    </item>
  </channel>
</rss>

