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

Convert Exponential values in Numbers???

Please find the attached document,

In my application, you'll notice that in Column TO_BALANCE containing data like 1e+017,

but i need to present the data which is not in the exponential form

i:e:- 100000000000000000

Regards.

Zain

1 Solution

Accepted Solutions
sivarajs
Specialist II
Specialist II

Try using this

num(num#(TO_BALANCE),'##################') as TO_BALANCE

View solution in original post

3 Replies
jvitantonio
Luminary Alumni
Luminary Alumni

Hi,

Use

LOAD num(TO_BALANCE,'##################'),

     ACTUAL_RATE

FROM ...

Not applicable
Author

i applied it but, still have the same problem

sivarajs
Specialist II
Specialist II

Try using this

num(num#(TO_BALANCE),'##################') as TO_BALANCE