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: 
arjakumar
Contributor III
Contributor III

How to change the value 12.3456 to 12.34 using string function

How to change the value 12.3456 to 12.34 using string function

4 Replies
devarasu07
Master II
Master II

Hi,

using string fxn? if so just use the left fxn =left(12.3456,5)

better way is the number fxn like below

=Num(12.3456,'##.00')

i.e update your field name instead of the hard coded value

Anil_Babu_Samineni

Num(Value,'##.00')

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
jonathandienst
Partner - Champion III
Partner - Champion III

Do you want to round the number (ie to 12.35) or round it down (to 12.34)?

Round up:  Ceil(12.3456, 0.01)

Round:  Round(12.3456, 0.01)

Round down:  Floor(12.3456, 0.01)

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
arjakumar
Contributor III
Contributor III
Author

I also want to change 12.3456 to 12.35 when 3rd postion after decimal point is >=5.