<?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: Issue: Decimals getting converted to exponential format. in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Issue-Decimals-getting-converted-to-exponential-format/m-p/104692#M602721</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Jaime !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have used the Column like '*e*' part in the existing solution and it seems to fill the missing blocks. Earlier i had issues as all values were getting modified but now only the ones that have exponential form are being changed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For now I have modified your logic as :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(IsNum(Column) and Column like '*e*',Replace(RTRIM(Replace(Num(Column,'##0.#############'),'0',' ')),' ', '0'),Column) as Column,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and it seems to do the trick &lt;/P&gt;&lt;P&gt;&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, 22 Aug 2018 08:42:08 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-08-22T08:42:08Z</dc:date>
    <item>
      <title>Issue: Decimals getting converted to exponential format.</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-Decimals-getting-converted-to-exponential-format/m-p/104681#M602710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are loading data from an excel file. The column in question is used to store all kind of invalid values [might be a date, a string, a numeric value or even NULL]. The format for that column is specified as 'General' in the excel file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;During the load, the small decimal values [-0.000001] are getting converted to their exponential form [-1e-06]. This conversion is not desirable as we need to see the number the way it is.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tried loading as Text, and also tried various number format but none seem to achieve the purpose. On using Num(ColName, '#,##0.0########') in the load script we are able to get the correct number but additional [non significant] zeroes are appended to the end of the number to account for the remaining '#' signs that we use [it loads -0.000001000 in place of -0.000001]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions regarding how to load the contents the way they are in the excel file?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance for any pointers / suggestions &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;P&gt;Thanks !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Aug 2018 08:47:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-Decimals-getting-converted-to-exponential-format/m-p/104681#M602710</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-21T08:47:41Z</dc:date>
    </item>
    <item>
      <title>Re: Issue: Decimals getting converted to exponential format.</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-Decimals-getting-converted-to-exponential-format/m-p/104682#M602711</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We have faced the similar issue.&lt;/P&gt;&lt;P&gt;I suggest simple use &lt;STRONG&gt;* 1&lt;/STRONG&gt; multiplicator:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Load &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Field &lt;STRONG&gt;* 1&lt;/STRONG&gt; as Field&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;From;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Aug 2018 09:10:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-Decimals-getting-converted-to-exponential-format/m-p/104682#M602711</guid>
      <dc:creator>MindaugasBacius</dc:creator>
      <dc:date>2018-08-21T09:10:15Z</dc:date>
    </item>
    <item>
      <title>Re: Issue: Decimals getting converted to exponential format.</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-Decimals-getting-converted-to-exponential-format/m-p/104683#M602712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Assuming I understood your suggestion correctly, &lt;SPAN style="font-size: 13.3333px;"&gt;this is what i tried:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if( IsNum(ColName),&amp;nbsp; &lt;SPAN style="font-size: 13.3333px;"&gt;ColName&lt;/SPAN&gt; * 1,&amp;nbsp; &lt;SPAN style="font-size: 13.3333px;"&gt;ColName &lt;/SPAN&gt;) as &lt;SPAN style="font-size: 13.3333px;"&gt;ColName2&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;It does not seem to work, even after multiplying with 1, it is loading -1e-06 as before for -0.000001. &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;Please do let me know if you see any gaps here.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Aug 2018 09:39:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-Decimals-getting-converted-to-exponential-format/m-p/104683#M602712</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-21T09:39:34Z</dc:date>
    </item>
    <item>
      <title>Re: Issue: Decimals getting converted to exponential format.</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-Decimals-getting-converted-to-exponential-format/m-p/104684#M602713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Aachin. I am not quite proud of my solution but here it goes:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I created a toy Excel file with a column with format general with rows&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 82px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD align="right" height="20" width="82"&gt;0,0000006&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;-0,00000085&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;Null&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;43246&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;error&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is text, dates and small numbers. My load script is as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: blue; font-size: 9.0pt; font-family: 'Courier New';"&gt;&lt;STRONG&gt;LOAD&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;IsNum&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;Column&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;) &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;and&lt;/SPAN&gt; &lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;Column&lt;/SPAN&gt; &lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;like&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt; '*e*', &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;Num&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;Column&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;, '#.###,' &amp;amp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;Repeat&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;('0', &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;fabs&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;SubField&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;Column&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;, 'e', -1))+&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;Column&lt;/SPAN&gt; &lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;like&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt; '*,*', &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;Len&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;TextBetween&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;Column&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;, ',', 'e')), 0))), &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;Column&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;) &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;as&lt;/SPAN&gt; &lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;Column &lt;/SPAN&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;FROM&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;&lt;BR /&gt;[.\DudaNumExp.xlsx]&lt;BR /&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;ooxml&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;embedded&lt;/SPAN&gt; &lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;labels&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;table&lt;/SPAN&gt; &lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;is&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt; Hoja1);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First I check if the field is a number and if it has been read in exponential form, thus the condition &lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;Column&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;like&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt; '*e*'&lt;/SPAN&gt;. If so, I format the data with Num function, forcing its representation with the precision required. That precision is "the number after the 'e' letter plus the number of decimals in exponential form". This is done in&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;Repeat&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;('0', &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;fabs&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;SubField&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;Column&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;, 'e', -1)) //NUMBER AFTER 'E' LETTER&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt; + &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;Column&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: 'Courier New'; font-size: 12px;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;like&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt; '*,*', &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;Len&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;TextBetween&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;Column&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;, ',', 'e')), 0)) //NUMBER OF DECIMALS&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This solutions works fine for me but, as I said, I'm not proud, looks pretty complicated. You could use something like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;Num&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;Column&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;, '#.###,0000000000000000'&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;instead if you don't mind to fix the number of decimals after comma.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps! Bests,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jaime.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Aug 2018 11:33:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-Decimals-getting-converted-to-exponential-format/m-p/104684#M602713</guid>
      <dc:creator>jaibau1993</dc:creator>
      <dc:date>2018-08-21T11:33:48Z</dc:date>
    </item>
    <item>
      <title>Re: Issue: Decimals getting converted to exponential format.</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-Decimals-getting-converted-to-exponential-format/m-p/104685#M602714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How about something like this:&lt;/P&gt;&lt;P&gt;=Num(value, '0.0' &amp;amp; Repeat('0', -Log10(value)))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Num(1e-6, '0.0' &amp;amp; Repeat('0', -Log10(1e-6)))&amp;nbsp; -&amp;gt; 0.0000010&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Aug 2018 11:45:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-Decimals-getting-converted-to-exponential-format/m-p/104685#M602714</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2018-08-21T11:45:08Z</dc:date>
    </item>
    <item>
      <title>Re: Issue: Decimals getting converted to exponential format.</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-Decimals-getting-converted-to-exponential-format/m-p/104686#M602715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To get an individual numeric formatting for each value (you might need some additional logic to differ for various numeric content like dates &amp;amp; times, integer and floats and also for strings or any kind of NULL's) you could use something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Num(ColName, '#,##0.' &amp;amp; repeat('#', len(frac(ColName)))) as ColName&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Aug 2018 12:01:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-Decimals-getting-converted-to-exponential-format/m-p/104686#M602715</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2018-08-21T12:01:42Z</dc:date>
    </item>
    <item>
      <title>Re: Issue: Decimals getting converted to exponential format.</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-Decimals-getting-converted-to-exponential-format/m-p/104687#M602716</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Jonathan !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not all numbers are numeric, its a mixed data set. Also, the decimal numbers are being read in differently. Some are getting converted to exponential form while others are still being treated as decimals.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Aug 2018 06:41:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-Decimals-getting-converted-to-exponential-format/m-p/104687#M602716</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-22T06:41:26Z</dc:date>
    </item>
    <item>
      <title>Re: Issue: Decimals getting converted to exponential format.</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-Decimals-getting-converted-to-exponential-format/m-p/104688#M602717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Marcus !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I use similar implementation, even some numbers that have only 2 decimal places in original data set [say 12345.99] are getting converted to numbers with a lot more precision [say 12345.989999999]. This is a common observation for all implementations where I try to enforce the precision.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Not sure how its picking up the extra set of numbers.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Aug 2018 06:43:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-Decimals-getting-converted-to-exponential-format/m-p/104688#M602717</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-22T06:43:58Z</dc:date>
    </item>
    <item>
      <title>Re: Issue: Decimals getting converted to exponential format.</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-Decimals-getting-converted-to-exponential-format/m-p/104689#M602718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please, note that I used decimal comma instead of decimal point. If you need a translation:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; font-family: 'Courier New'; color: blue;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;LOAD&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; font-family: 'Courier New'; color: black;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; color: blue;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; color: blue;"&gt;IsNum&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; color: maroon;"&gt;Column&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt;"&gt;) &lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; color: blue;"&gt;and&lt;/SPAN&gt; &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; color: maroon;"&gt;Column&lt;/SPAN&gt; &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; color: blue;"&gt;like&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt;"&gt; '*e*', &lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; color: blue;"&gt;Num&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; color: maroon;"&gt;Column&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt;"&gt;, '#,###.' &amp;amp; &lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; color: blue;"&gt;Repeat&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt;"&gt;('0',&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; color: blue;"&gt;fabs&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; color: blue;"&gt;SubField&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; color: maroon;"&gt;Column&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt;"&gt;, 'e', -1))+&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; color: blue;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; color: maroon;"&gt;Column&lt;/SPAN&gt; &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; color: blue;"&gt;like&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt;"&gt; '*.*', &lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; color: blue;"&gt;Len&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; color: blue;"&gt;TextBetween&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; color: maroon;"&gt;Column&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt;"&gt;, '.', 'e')), 0))), &lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; color: maroon;"&gt;Column&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt;"&gt;) &lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; color: blue;"&gt;as&lt;/SPAN&gt; &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; color: maroon;"&gt;Column &lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; font-family: 'Courier New'; color: blue;"&gt;FROM&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; font-family: 'Courier New'; color: black;"&gt;&lt;BR /&gt;[.\DudaNumExp.xlsx]&lt;BR /&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; font-family: 'Courier New'; color: blue;"&gt;ooxml&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; font-family: 'Courier New'; color: black;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; font-family: 'Courier New'; color: blue;"&gt;embedded&lt;/SPAN&gt; &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; font-family: 'Courier New'; color: blue;"&gt;labels&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; font-family: 'Courier New'; color: black;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; font-family: 'Courier New'; color: blue;"&gt;table&lt;/SPAN&gt; &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; font-family: 'Courier New'; color: blue;"&gt;is&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; font-family: 'Courier New'; color: black;"&gt; Hoja1);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bests,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jaime.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Aug 2018 07:35:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-Decimals-getting-converted-to-exponential-format/m-p/104689#M602718</guid>
      <dc:creator>jaibau1993</dc:creator>
      <dc:date>2018-08-22T07:35:34Z</dc:date>
    </item>
    <item>
      <title>Re: Issue: Decimals getting converted to exponential format.</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-Decimals-getting-converted-to-exponential-format/m-p/104690#M602719</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think this is a bit different to the above mentioned formatting-issue because it's related to the way how Qlik worked with the numbers which is a binary and not a decimal system and therefore for many numbers didn't exists an exact binary value. This meant it's a rounding issue and quite well explained here: &lt;A href="https://community.qlik.com/qlik-blogpost/3471"&gt;Rounding Errors&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For many use-cases it's not very important because for the usual measures in Qlik like amounts, currencies and also various rates on them is the precision more as enough. If you really needs calculations with large numbers ( &amp;gt;= 15 digits ) and/or with a very high precision you need to use a different tool for it maybe transferring it to R and displaying just the results in Qlik.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Beside this there could be differences between the stored values respectively the in calculations used values and those ones of them which are displayed in any object. If you want directly to compare the input-values with the stored values you need to look on them with fieldvalue() by loading the values without any transformation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't know what your aim is on these data but I could imagine that it might be useful to load the different data-types with different loadings by using appropriate where-clauses on each part and concatenating/joining/mapping them afterwards again (if necessary).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Aug 2018 07:59:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-Decimals-getting-converted-to-exponential-format/m-p/104690#M602719</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2018-08-22T07:59:27Z</dc:date>
    </item>
    <item>
      <title>Re: Issue: Decimals getting converted to exponential format.</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-Decimals-getting-converted-to-exponential-format/m-p/104691#M602720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Marcus !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Currently the aim is to display the invalid values correctly. Also, we are not crossing the 15 digit limit. I shall explore more options &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again for your inputs !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Aug 2018 08:09:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-Decimals-getting-converted-to-exponential-format/m-p/104691#M602720</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-22T08:09:58Z</dc:date>
    </item>
    <item>
      <title>Re: Issue: Decimals getting converted to exponential format.</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-Decimals-getting-converted-to-exponential-format/m-p/104692#M602721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Jaime !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have used the Column like '*e*' part in the existing solution and it seems to fill the missing blocks. Earlier i had issues as all values were getting modified but now only the ones that have exponential form are being changed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For now I have modified your logic as :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(IsNum(Column) and Column like '*e*',Replace(RTRIM(Replace(Num(Column,'##0.#############'),'0',' ')),' ', '0'),Column) as Column,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and it seems to do the trick &lt;/P&gt;&lt;P&gt;&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, 22 Aug 2018 08:42:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-Decimals-getting-converted-to-exponential-format/m-p/104692#M602721</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-22T08:42:08Z</dc:date>
    </item>
  </channel>
</rss>

