<?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: Num in the script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Num-in-the-script/m-p/1073336#M932840</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mario,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just define the format that you want for the new field. Like the examples below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Num(Field1/(Field2*10), '##.#########')&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;Num(Field1/(Field2*10), '##.#####')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nandha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 Mar 2016 14:41:15 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2016-03-02T14:41:15Z</dc:date>
    <item>
      <title>Num in the script</title>
      <link>https://community.qlik.com/t5/QlikView/Num-in-the-script/m-p/1073332#M932836</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hey all, &lt;/P&gt;&lt;P&gt;my question is &lt;/P&gt;&lt;P&gt;i have too field one has the value of 157 and the second is 16&lt;/P&gt;&lt;P&gt;I need to create a field on the script that will give me the exact number of 157/(16*10)=0.98125 not 0.98&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope you can help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;‌&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Num-in-the-script/m-p/1073332#M932836</guid>
      <dc:creator>mario-sarkis</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Num in the script</title>
      <link>https://community.qlik.com/t5/QlikView/Num-in-the-script/m-p/1073333#M932837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Not sure, but may be this:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Num(Field1/(Field2*10), '##.#########') as AnotherField&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2016 14:33:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Num-in-the-script/m-p/1073333#M932837</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-03-02T14:33:21Z</dc:date>
    </item>
    <item>
      <title>Re: Num in the script</title>
      <link>https://community.qlik.com/t5/QlikView/Num-in-the-script/m-p/1073334#M932838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;C1:&lt;/P&gt;&lt;P&gt;load * inline&amp;nbsp; [&lt;/P&gt;&lt;P&gt;field1, field2&lt;/P&gt;&lt;P&gt;157,16&lt;/P&gt;&lt;P&gt;]&lt;/P&gt;&lt;P&gt;; &lt;/P&gt;&lt;P&gt; C:&lt;/P&gt;&lt;P&gt;load *,&lt;/P&gt;&lt;P&gt;num(field1/(field2*10),'#.####') as newfield&lt;/P&gt;&lt;P&gt;resident C1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;drop table C1;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2016 14:34:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Num-in-the-script/m-p/1073334#M932838</guid>
      <dc:creator>alexpanjhc</dc:creator>
      <dc:date>2016-03-02T14:34:47Z</dc:date>
    </item>
    <item>
      <title>Re: Num in the script</title>
      <link>https://community.qlik.com/t5/QlikView/Num-in-the-script/m-p/1073335#M932839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Using &lt;A _jive_internal="true" href="https://community.qlik.com/people/alexpanjhc"&gt;Alex&lt;/A&gt;‌'s example, it seems that without num() function seems to work the best:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;C1:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;load * inline&amp;nbsp; [&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;field1, field2&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;157,16&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;]&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;C:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD field1/(field2*10) as newfield&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;resident C1;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2016 14:39:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Num-in-the-script/m-p/1073335#M932839</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-03-02T14:39:01Z</dc:date>
    </item>
    <item>
      <title>Re: Num in the script</title>
      <link>https://community.qlik.com/t5/QlikView/Num-in-the-script/m-p/1073336#M932840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mario,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just define the format that you want for the new field. Like the examples below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Num(Field1/(Field2*10), '##.#########')&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;Num(Field1/(Field2*10), '##.#####')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nandha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2016 14:41:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Num-in-the-script/m-p/1073336#M932840</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-03-02T14:41:15Z</dc:date>
    </item>
    <item>
      <title>Re: Num in the script</title>
      <link>https://community.qlik.com/t5/QlikView/Num-in-the-script/m-p/1073337#M932841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;num(157/(16*10),'##.#####')&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2016 14:48:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Num-in-the-script/m-p/1073337#M932841</guid>
      <dc:creator>bohravanraj</dc:creator>
      <dc:date>2016-03-02T14:48:22Z</dc:date>
    </item>
  </channel>
</rss>

