<?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: Question about usage of num# in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Question-about-usage-of-num/m-p/300182#M708044</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;here is example, num_val values contain numbers without _.000 parts:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 10pt;"&gt;str_table:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 10pt;"&gt;LOAD * INLINE [&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; str_val&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1234_.000&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 5555_.000&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 77.7_.000&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1_.000&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1111111111111_.000&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 10pt;"&gt;];&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 10pt;"&gt;num_table:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 10pt;"&gt;LOAD&amp;nbsp;&amp;nbsp; Num(Num#(str_val, '#_.000', '.', ',')) as num_val&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 10pt;"&gt;Resident str_table;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 May 2012 08:03:25 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-05-03T08:03:25Z</dc:date>
    <item>
      <title>Question about usage of num#</title>
      <link>https://community.qlik.com/t5/QlikView/Question-about-usage-of-num/m-p/300176#M708038</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perhaps a simple problem, nevertheless I diddn't succeed in solving it:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my database I have a string field with this format: 1234_.000 (numbers followed by an underscore and a dot and then three zeroes).&lt;BR /&gt;In QlikView I want to make a numeric field out of it: 1234.&lt;/P&gt;&lt;P&gt;Is this possible by ONLY using num# ? I know I could simply use num(replace(myField,'_.000','')) as my_NumField, but I thought it should actually be possible by only using num# .&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I'd be thankful for any suggestions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;BR /&gt;Biester&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Sep 2011 11:15:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Question-about-usage-of-num/m-p/300176#M708038</guid>
      <dc:creator>biester</dc:creator>
      <dc:date>2011-09-29T11:15:21Z</dc:date>
    </item>
    <item>
      <title>Re: Question about usage of num#</title>
      <link>https://community.qlik.com/t5/QlikView/Question-about-usage-of-num/m-p/300177#M708039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;subfield(myField, '_', 1) as ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried num# but it wasn't succesfull.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Sep 2011 11:30:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Question-about-usage-of-num/m-p/300177#M708039</guid>
      <dc:creator>Michiel_QV_Fan</dc:creator>
      <dc:date>2011-09-29T11:30:24Z</dc:date>
    </item>
    <item>
      <title>Question about usage of num#</title>
      <link>https://community.qlik.com/t5/QlikView/Question-about-usage-of-num/m-p/300178#M708040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you get rid of the character values from within the field, QlikView will automatically recognize it as a numeric.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Purgechar(MyField,'_') as MyField.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Sep 2011 11:39:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Question-about-usage-of-num/m-p/300178#M708040</guid>
      <dc:creator />
      <dc:date>2011-09-29T11:39:13Z</dc:date>
    </item>
    <item>
      <title>Question about usage of num#</title>
      <link>https://community.qlik.com/t5/QlikView/Question-about-usage-of-num/m-p/300179#M708041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot for your suggestions. I know the problem can be solved using purgechar etc., but as said I wonder if there is a way to do it by ONLY using num#. Actually the manual uses the example num#(A,'abc#,#') which is obviously able to mask out the leading string 'abc'. So I imagined a num#(myField,'#_.#' ..) might do the job. I tried several variations, but without any success.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Sep 2011 11:56:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Question-about-usage-of-num/m-p/300179#M708041</guid>
      <dc:creator>biester</dc:creator>
      <dc:date>2011-09-29T11:56:48Z</dc:date>
    </item>
    <item>
      <title>Question about usage of num#</title>
      <link>https://community.qlik.com/t5/QlikView/Question-about-usage-of-num/m-p/300180#M708042</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;this can be done with &lt;STRONG&gt;num#(myField,'#_.000', '.', ',')&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 09 Oct 2011 07:48:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Question-about-usage-of-num/m-p/300180#M708042</guid>
      <dc:creator />
      <dc:date>2011-10-09T07:48:09Z</dc:date>
    </item>
    <item>
      <title>Question about usage of num#</title>
      <link>https://community.qlik.com/t5/QlikView/Question-about-usage-of-num/m-p/300181#M708043</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Sorry for late answer. I tried with &lt;STRONG&gt;num#(myField,'#_.000', '.', ','), &lt;/STRONG&gt;but it didn't work either. The figures look thus:&lt;/P&gt;&lt;TABLE bgcolor="#ffffff" border="1" cellpadding="2" cellspacing="0" style="font-size: 9pt;"&gt;&lt;TBODY&gt;&lt;TR bgcolor="#f5f5f5"&gt;&lt;TH&gt;&lt;SPAN style="color: #363636;"&gt;&lt;STRONG&gt;num#(QUARK,'#_.000','.',',')&lt;STRONG&gt; &lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt; &lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR bgcolor="#ffffff"&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;768_.000&lt;/SPAN&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;TR bgcolor="#ffffff"&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;1234_.000&lt;/SPAN&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;TR bgcolor="#ffffff"&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;76514_.000&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2012 07:49:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Question-about-usage-of-num/m-p/300181#M708043</guid>
      <dc:creator>biester</dc:creator>
      <dc:date>2012-05-03T07:49:38Z</dc:date>
    </item>
    <item>
      <title>Re: Question about usage of num#</title>
      <link>https://community.qlik.com/t5/QlikView/Question-about-usage-of-num/m-p/300182#M708044</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;here is example, num_val values contain numbers without _.000 parts:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 10pt;"&gt;str_table:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 10pt;"&gt;LOAD * INLINE [&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; str_val&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1234_.000&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 5555_.000&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 77.7_.000&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1_.000&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1111111111111_.000&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 10pt;"&gt;];&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 10pt;"&gt;num_table:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 10pt;"&gt;LOAD&amp;nbsp;&amp;nbsp; Num(Num#(str_val, '#_.000', '.', ',')) as num_val&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 10pt;"&gt;Resident str_table;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2012 08:03:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Question-about-usage-of-num/m-p/300182#M708044</guid>
      <dc:creator />
      <dc:date>2012-05-03T08:03:25Z</dc:date>
    </item>
    <item>
      <title>Re: Question about usage of num#</title>
      <link>https://community.qlik.com/t5/QlikView/Question-about-usage-of-num/m-p/300183#M708045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; OK, of course, I forgot NUM(), so actually &lt;STRONG&gt;Num(Num#(str_val, '#_.000', '.', ',')) &lt;/STRONG&gt;solves the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx &amp;amp; best regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2012 08:32:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Question-about-usage-of-num/m-p/300183#M708045</guid>
      <dc:creator>biester</dc:creator>
      <dc:date>2012-05-03T08:32:04Z</dc:date>
    </item>
  </channel>
</rss>

