Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

how to Round off the values in straight table

Hi all,


I need % value should represent less than or equal to 100%, I am looking out for the rounding of values.can any one suggest me the best ideas you have so that it will be helpful for my learning process


For Example:


for 100.005 % : i need answer like 100% << like it should not cross 100 %>>


please find the below screen shots for your referance

Screenshot_4.png


Expression screen shots:

Screenshot_5.png


Number properties:

Screenshot_6.png

Thank you,

Muthukumar

1 Solution

Accepted Solutions
yoganantha321
Creator II
Creator II

Hi Muthu,

=Round( Your expression *100)&'%'

It helps you.......

View solution in original post

4 Replies
Frank_Hartmann
Master II
Master II

use Floor() function:

If(YourExpression>1,Floor(YourExpression), YourExpression)

hope this helps

sunny_talwar

or Round() function

vinieme12
Champion III
Champion III

the first questing to ask is

Is the way you are calculating the expression correct?

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
yoganantha321
Creator II
Creator II

Hi Muthu,

=Round( Your expression *100)&'%'

It helps you.......