on 2012 Apr 10 12:53 PM
Hi ,
Actually there is a calculation in my calculated keyfigure Oncost, like below
Oncost = 1*(KPI Cost>= 0.9)+0 , Here in the KPI Cost is coming as 0.8996 hence I have to make it rounded of upto three decimal point as 0.900 here before the above calculation . I have tried to make it by the display menu of the CKF by the decimal point making upto three decimal places , but it is calculating by taking original value of KPI Cost (that is 0.8996 )and showing the out put as 0.900 . So is there any function by which I can make rounded of any floating number to its third decimal point. Like
if the value is 0.8778 it would be rounded of to 0.878
if the value is 0.8712 it would be rounded of to 0.871
if the value is 0.8996 it would be rounded of to 0.900
If the value is 1.2597 it would be rounded of to 1.260
If the value is 1.3451 it would be rounded of to 1.345
and this needs to be rounded of before the calculation.
could you please help on this.
Thanks in advance
Shatadru
Request clarification before answering.
Hi Shatadru,
1. Use KPI Cost as KF and in properties of this KF you can restrict to Number of Decimals under Display menu.
2. hide user KPI Cost
3. use it in your above formula
I hope it will help.
Regards,
Madhu
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The Value for FKF will be 1.444 not 0.444.
The calculation that I posted was based on the scenario mentioned in the first post...In that case Onsost will be 1
If you need rounded it to 2 decimals then you need the following formula.
FKF =( FRAC ( 'KC'*100 ) < 0.5 ) * FLOOR ( 'KC' * 100 ) / 100 + ( FRAC ( 'KC' * 100 ) >= 0.5 ) * CEIL ('KC' * 100) / 100
User | Count |
---|---|
71 | |
21 | |
9 | |
7 | |
6 | |
6 | |
4 | |
4 | |
4 | |
3 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.