
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2017 06:30 AM
HI
I have created a formula indicator that calculates a percentage in a value based on 2 automated indicators.
The formula works fine when incidents come in.
However on occasion when no tickets come in. The values for both indicators are zero resulting in a zero percentage value.
Is there a way you can add an exception rule to a formula to make the percentage value 100% when no tickets come in?
Solved! Go to Solution.
- Labels:
-
Performance Analytics
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2017 03:35 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2017 05:51 PM
when both numerator and denominator were zero, your formula indicator should through undefined meaning blank but not zero.
however if you would like to show 100%. this is the syntax.
{{DenominatoreratorIndicator}}= 0 ? 100 : {{NumeratoreratorIndicator}}/{{DenominatoreratorIndicator}}
let me know if this does not work
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2017 03:35 AM
To compare, you need [[DenominatoreratorIndicator]] == 0