Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Frac() function and number of precision numbers

Hello,

I was testing optimization by cut big number in two numbers with less values when an error occur.

Memory didn't decrease as I thought but increased because of Frac() function.

Frac() function returns more precision numbers than the reference field.

Here is my script :

TEST_TEMP:

Load

          round(100*rand(),0.01) as val

autogenerate 100000;

TEST:

LOAD  val,

          floor(val) as floor,

          Frac(val) as frac

resident TEST_TEMP;

drop table TEST_TEMP;

And here is the result :

2014-05-09_16h23_301.png

I had test on QV 11.2012018.0 SR3  and 11.2012018.0 SR5.

So I've to do this :  round(Frac(val),0.01)

Has someone have the same result in others Qv versions ?

Bye,

1 Solution

Accepted Solutions
1 Reply
Not applicable
Author