The widget shows No Data Available/No Data to Display in dashboard even though "Value when nil" field is set as 0 for the automated indicators used in the Formula IndicatorIssue The widget shows No Data Available/No Data to Display in dashboard even though "Value when nil" field is set as 0 for the automated indicators used in Formula Indicator. The widget is using a Formula Indicator and this formula indicator has 2 automated indicators. Consider the below sample Formula Indicator [[Number of new incidents]]/[[Number of closed incidents]]*100 Both these automated indicators [[Number of new incidents] and [[Number of closed incidents]] has the "Value when nil" field set as 0ReleaseALLCauseThe denominator indicator having score as 0 (zero) in the formula indicator is the cause of the issue. In ordinary arithmetic, any number division by zero is undefined. Consider the below formula indicator where the denominator indicator [Number of closed incidents] has 0 value then the output is undefined and the widget will show as "No Data Available/No Data to Display" Below is the sample Formula Indicator [[Number of new incidents]]/[[Number of closed incidents]]*100 ResolutionThe formula in the formula indicator needs to be modified to handle the 0 denominator value of automated indicator. For example the formula indicator has to be modified as below: [[Number of closed incidents]] == 0 ? 0 : [[Number of new incidents]]/[[Number of closed incidents]]*100 With the above formula, even if the denominator indicator [Number of closed incidents] has 0 (zero) score; the output will be shown as 0 (zero) and not as "No Data Available/No Data to Display"Related Links