
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-20-2016 05:02 AM
Hi All,
Using Geneva, Patch 9 in our instance.
I have a formula indicator:
( [[Number of successful changes / By month SUM +]] ) / ( [[Number of successful changes / By month SUM +]] + [[Number of failed changes / By month SUM +]] ) * 100
Which is linked to a widget, the widget details a Followed Breakdown of the Change Driver Group. It seems when I view this widget for certain Driver Groups I cannot see any scores, transpires that I cannot see scores as there are no scores for one of the indicators. i.e. Number of failed changes
My assumption was that if there were no scores, then 0 would simply be referenced? Don't believe this is the case though? Any additional config required here?
pieter.goris vincentloffeld - can you help? Perhaps a revision to my formula is required?
regards,
Andrew
Solved! Go to Solution.
- Labels:
-
Dashboard
-
Performance Analytics

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-03-2017 03:21 AM
Both indicators "Number of successful changes"and "Number of failed changes" had the value for "Value when nil" as blank.
This meant that instead of the number "0" the formula was getting "nil" and as such is not able to calculate with that since it is expecting an integer. When the "Value when nil" to is set to "0" the formula was able to return a number and calculate correctly.
Thanks for everyone's help on this question. vincentloffeld arnoud

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-20-2016 11:33 PM
Couldn't you change the formula into:
( [[Number of successful changes / By month SUM +]] ) / ( [[Number of closed changes / By month SUM +]] ) * 100?
Or something similar?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-20-2016 09:59 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-20-2016 12:09 PM
In addition to my other reply, could you try:
(
( [[Number of successful changes / By month SUM +]] ) /
( ([[Number of successful changes / By month SUM +]] || 0) + ([[Number of failed changes / By month SUM +]] || 0 )) * 100
) || 0

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-21-2016 04:58 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-03-2017 03:21 AM
Both indicators "Number of successful changes"and "Number of failed changes" had the value for "Value when nil" as blank.
This meant that instead of the number "0" the formula was getting "nil" and as such is not able to calculate with that since it is expecting an integer. When the "Value when nil" to is set to "0" the formula was able to return a number and calculate correctly.
Thanks for everyone's help on this question. vincentloffeld arnoud