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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Converting text into a number

Please assist, i have a text that i have to convert into a number.

The text looks loke this 0000000089548436, i need to remove all leading zeros and have a decimal point before two last digits.

a thousand separator should be a space.

The result should look like 895 484.36


Thank you

Labels (1)
3 Replies
Akina0929
Creator
Creator

Hi '

  use following expression

   =num(0000000089548436)/100


Regards

Anji

tresB
Champion III
Champion III

Change the load script settings like:

SET ThousandSep=' ';

Capture.JPG

You can use this formatting/transformation during the load as well.

ramasaisaksoft
Master
Master

=Num(0000000089548436,'#,###.#0')

num.png