<?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: Variable format in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Variable-format/m-p/905525#M1006809</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No luck..&lt;/P&gt;&lt;P&gt;I am getting "Error in Expression ')' expected"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 09 May 2015 05:32:58 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-05-09T05:32:58Z</dc:date>
    <item>
      <title>Variable format</title>
      <link>https://community.qlik.com/t5/QlikView/Variable-format/m-p/905523#M1006807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;New to Qlik. I created a variable name vSales. Once I start showing the variable in Text Object, it is showing as 24.456745 (multiple numbers after decimal point). Is there way I can get rid of numbers after decimal?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 May 2015 04:49:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Variable-format/m-p/905523#M1006807</guid>
      <dc:creator />
      <dc:date>2015-05-09T04:49:50Z</dc:date>
    </item>
    <item>
      <title>Re: Variable format</title>
      <link>https://community.qlik.com/t5/QlikView/Variable-format/m-p/905524#M1006808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;try like this &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;NUM&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;STRONG style=": ; color: #808080; font-size: 8pt;"&gt;&lt;EM&gt;$(vSales)&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;,'##0') &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;or &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;=Floor($(vSales))&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 May 2015 04:59:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Variable-format/m-p/905524#M1006808</guid>
      <dc:creator />
      <dc:date>2015-05-09T04:59:29Z</dc:date>
    </item>
    <item>
      <title>Re: Variable format</title>
      <link>https://community.qlik.com/t5/QlikView/Variable-format/m-p/905525#M1006809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No luck..&lt;/P&gt;&lt;P&gt;I am getting "Error in Expression ')' expected"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 May 2015 05:32:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Variable-format/m-p/905525#M1006809</guid>
      <dc:creator />
      <dc:date>2015-05-09T05:32:58Z</dc:date>
    </item>
    <item>
      <title>Re: Variable format</title>
      <link>https://community.qlik.com/t5/QlikView/Variable-format/m-p/905526#M1006810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Let me know how expression and variable you have written&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 May 2015 05:45:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Variable-format/m-p/905526#M1006810</guid>
      <dc:creator />
      <dc:date>2015-05-09T05:45:51Z</dc:date>
    </item>
    <item>
      <title>Re: Variable format</title>
      <link>https://community.qlik.com/t5/QlikView/Variable-format/m-p/905527#M1006811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;look at these functions in Qlik help&lt;/P&gt;&lt;P&gt;floor ceil round&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;&lt;EM&gt;round( 2.4 ) &lt;/EM&gt;&lt;/SPAN&gt;&lt;EM&gt;returns 2&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN class="Code"&gt;round( 2.6 ) &lt;/SPAN&gt;returns 3&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN class="Code"&gt;round( 2.5 ) &lt;/SPAN&gt;returns 3&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN class="Code"&gt;round( 3.88 , 0.1 ) &lt;/SPAN&gt;returns 3.9&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN class="Code"&gt;round( 3.88 , 5 ) &lt;/SPAN&gt;returns 5&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN class="Code"&gt;round( 1.1 , 1 , 0.5 ) &lt;/SPAN&gt;returns 1.5&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 May 2015 11:58:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Variable-format/m-p/905527#M1006811</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2015-05-09T11:58:04Z</dc:date>
    </item>
    <item>
      <title>Re: Variable format</title>
      <link>https://community.qlik.com/t5/QlikView/Variable-format/m-p/905528#M1006812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Muralidhar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can for sure use the above functions. I have however tried Uday's function and it is correct. I have created a variable vsales and referenced it in a text object and Uday'sfunction should work. Please see screen shot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=num($(vSales),'##0')&amp;nbsp;&amp;nbsp; as is should work&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="num_in_text_object.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/86072_num_in_text_object.png" style="height: 343px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 May 2015 12:14:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Variable-format/m-p/905528#M1006812</guid>
      <dc:creator />
      <dc:date>2015-05-09T12:14:50Z</dc:date>
    </item>
    <item>
      <title>Re: Variable format</title>
      <link>https://community.qlik.com/t5/QlikView/Variable-format/m-p/905529#M1006813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try&lt;/P&gt;&lt;P&gt;=round(vSales)&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;=round(vSales, 0.01)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 May 2015 13:59:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Variable-format/m-p/905529#M1006813</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-09T13:59:31Z</dc:date>
    </item>
  </channel>
</rss>

