Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
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
Specialist III
Specialist III

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