Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Rounding off!!!!!!!!

   HI All,

      I have a Expression in that i have Decimal part is there so i want to round off that one Like;

present Input:

CINDEX
74.00156
26.00783

I want to  get the this out put:

Cindex
74.1
26.1

can u help me how

thanks

14 Replies
nizamsha
Specialist II
Specialist II

Try this one

LOAD * Inline [

Number

80.56

74.456

32.32

];

=num(Number,'##0.0')

sunilkumarqv
Specialist II
Specialist II

Use you expression like these

= Num(Expresssion,'#,##0.0;(#,##0.0); ')

                        or

= Num(Expresssion,'#,##.#;(#,##.#);')

Anonymous
Not applicable
Author

why don't you simply change in the number format tab and change that to 1 decimal place fixed?

ankitaag
Partner - Creator III
Partner - Creator III

Hello,

Try Num(CINDEX,'##0.0')

It will round to 1 decimal value

Thanks and Regards,

Ankita

buzzy996
Master II
Master II

use Ceil()