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: 
saumyashah90
Specialist
Specialist

Decimal value problem in a text box object?

Hey i want to put two values after decimals.

For Example for 7945694.2234

I want 7945694.22 in my text box object.

I tried it using "Num Floor and Left"-->shows nothing after decimal

I also Tried It using "Subfield"-->shows nothing after decimal.

Even tried Num(),'#.##' or 0.00-->Gives 00 after decimal

Labels (1)
4 Replies
kaushiknsolanki
MVP
MVP

Hi,

     Try this.

     =num(7945694.2234,'#,##0.00')

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
Not applicable

try this

num('7945694.2234' ,'#.00','.',',')

or simply write this

num('7945694.2234', .00,'.',',')

sushil353
Master II
Master II

use Round Function:

=Round(7945694.2234,0.01) will return 7945694.22

HTH

Sushil

Not applicable

U can use...

=NUM(7945694.2234,'##.##')