Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
Expression screen shots:
Number properties:
Thank you,
Muthukumar
use Floor() function:
If(YourExpression>1,Floor(YourExpression), YourExpression)
hope this helps
or Round() function
the first questing to ask is
Is the way you are calculating the expression correct?
Hi Muthu,
=Round( Your expression *100)&'%'
It helps you.......